Struct sp_inherents::InherentData [−][src]
pub struct InherentData { /* fields omitted */ }
Inherent data to include in a block.
Implementations
impl InherentData
[src]
impl InherentData
[src]pub fn new() -> Self
[src]
Create a new instance.
pub fn put_data<I: Encode>(
&mut self,
identifier: InherentIdentifier,
inherent: &I
) -> Result<(), Error>
[src]
&mut self,
identifier: InherentIdentifier,
inherent: &I
) -> Result<(), Error>
Put data for an inherent into the internal storage.
Return
Returns Ok(())
if the data could be inserted and no data for an inherent with the same
identifier existed, otherwise an error is returned.
Inherent identifiers need to be unique, otherwise decoding of these values will not work!
pub fn replace_data<I: Encode>(
&mut self,
identifier: InherentIdentifier,
inherent: &I
)
[src]
&mut self,
identifier: InherentIdentifier,
inherent: &I
)
Replace the data for an inherent.
If it does not exist, the data is just inserted.
pub fn get_data<I: Decode>(
&self,
identifier: &InherentIdentifier
) -> Result<Option<I>, Error>
[src]
&self,
identifier: &InherentIdentifier
) -> Result<Option<I>, Error>
Returns the data for the requested inherent.
Return
Ok(Some(I))
if the data could be found and deserialized.Ok(None)
if the data could not be found.Err(_)
if the data could be found, but deserialization did not work.
pub fn len(&self) -> usize
[src]
Get the number of inherents in this instance
Trait Implementations
impl Clone for InherentData
[src]
impl Clone for InherentData
[src]fn clone(&self) -> InherentData
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Decode for InherentData
[src]
impl Decode for InherentData
[src]impl Default for InherentData
[src]
impl Default for InherentData
[src]fn default() -> InherentData
[src]
impl Encode for InherentData
[src]
impl Encode for InherentData
[src]impl EncodeLike<InherentData> for InherentData
[src]
Auto Trait Implementations
impl RefUnwindSafe for InherentData
impl Send for InherentData
impl Sync for InherentData
impl Unpin for InherentData
impl UnwindSafe for InherentData
Blanket Implementations
impl<T> DecodeLimit for T where
T: Decode,
[src]
impl<T> DecodeLimit for T where
T: Decode,
[src]impl<S> Codec for S where
S: Decode + Encode,
[src]
S: Decode + Encode,
impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
T: Encode,
[src]
T: Encode,
impl<'_, T> EncodeLike<&'_ T> for T where
T: Encode,
[src]
T: Encode,
impl<'_, T> EncodeLike<&'_ mut T> for T where
T: Encode,
[src]
T: Encode,
impl<T> EncodeLike<Arc<T>> for T where
T: Encode,
[src]
T: Encode,
impl<T> EncodeLike<Box<T, Global>> for T where
T: Encode,
[src]
T: Encode,
impl<'a, T> EncodeLike<Cow<'a, T>> for T where
T: ToOwned + Encode,
[src]
T: ToOwned + Encode,
impl<T> EncodeLike<Rc<T>> for T where
T: Encode,
[src]
T: Encode,
impl<S> FullCodec for S where
S: Decode + FullEncode,
[src]
S: Decode + FullEncode,
impl<S> FullEncode for S where
S: Encode + EncodeLike<S>,
[src]
S: Encode + EncodeLike<S>,