Struct sp_inherents::CheckInherentsResult [−][src]
pub struct CheckInherentsResult { /* fields omitted */ }
The result of checking inherents.
It either returns okay for all checks, stores all occurred errors or just one fatal error.
When a fatal error occurs, all other errors are removed and the implementation needs to abort checking inherents.
Implementations
impl CheckInherentsResult
[src]
impl CheckInherentsResult
[src]pub fn new() -> Self
[src]
Create a new instance.
pub fn put_error<E: Encode + IsFatalError>(
&mut self,
identifier: InherentIdentifier,
error: &E
) -> Result<(), Error>
[src]
&mut self,
identifier: InherentIdentifier,
error: &E
) -> Result<(), Error>
Put an error into the result.
This makes this result resolve to ok() == false
.
Parameters
- identifier - The identifier of the inherent that generated the error.
- error - The error that will be encoded.
pub fn get_error<E: Decode>(
&self,
identifier: &InherentIdentifier
) -> Result<Option<E>, Error>
[src]
&self,
identifier: &InherentIdentifier
) -> Result<Option<E>, Error>
Get an error out of the result.
Return
Ok(Some(I))
if the error could be found and deserialized.Ok(None)
if the error could not be found.Err(_)
if the error could be found, but deserialization did not work.
pub fn into_errors(self) -> IntoIter<InherentIdentifier, Vec<u8>>
[src]
Convert into an iterator over all contained errors.
pub fn ok(&self) -> bool
[src]
Is this result ok?
pub fn fatal_error(&self) -> bool
[src]
Is this a fatal error?
Trait Implementations
impl Clone for CheckInherentsResult
[src]
impl Clone for CheckInherentsResult
[src]fn clone(&self) -> CheckInherentsResult
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Decode for CheckInherentsResult
[src]
impl Decode for CheckInherentsResult
[src]impl Default for CheckInherentsResult
[src]
impl Default for CheckInherentsResult
[src]impl Encode for CheckInherentsResult
[src]
impl Encode for CheckInherentsResult
[src]fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
[src]
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
pub fn size_hint(&self) -> usize
[src]
pub fn encode(&self) -> Vec<u8, Global>
[src]
pub fn using_encoded<R, F>(&self, f: F) -> R where
F: FnOnce(&[u8]) -> R,
[src]
F: FnOnce(&[u8]) -> R,
pub fn encoded_size(&self) -> usize
[src]
impl EncodeLike<CheckInherentsResult> for CheckInherentsResult
[src]
Auto Trait Implementations
impl RefUnwindSafe for CheckInherentsResult
impl Send for CheckInherentsResult
impl Sync for CheckInherentsResult
impl Unpin for CheckInherentsResult
impl UnwindSafe for CheckInherentsResult
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>,