pub struct SignatureError<T, S>{
pub unchecked: UncheckedSigned<T, S>,
}
Expand description
Error type returned when a verification of a signature fails.
Fields§
§unchecked: UncheckedSigned<T, S>
Trait Implementations§
Source§impl<T, S> Clone for SignatureError<T, S>
impl<T, S> Clone for SignatureError<T, S>
Source§fn clone(&self) -> SignatureError<T, S>
fn clone(&self) -> SignatureError<T, S>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<T, S> Debug for SignatureError<T, S>
impl<T, S> Debug for SignatureError<T, S>
Source§impl<T, S> Decode for SignatureError<T, S>
impl<T, S> Decode for SignatureError<T, S>
Source§fn decode<__CodecInputEdqy>(
__codec_input_edqy: &mut __CodecInputEdqy,
) -> Result<SignatureError<T, S>, Error>where
__CodecInputEdqy: Input,
fn decode<__CodecInputEdqy>(
__codec_input_edqy: &mut __CodecInputEdqy,
) -> Result<SignatureError<T, S>, Error>where
__CodecInputEdqy: Input,
Attempt to deserialise the value from input.
Source§fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
Attempt to deserialize the value from input into a pre-allocated piece of memory. Read more
Source§impl<T, S> Encode for SignatureError<T, S>
impl<T, S> Encode for SignatureError<T, S>
Source§fn size_hint(&self) -> usize
fn size_hint(&self) -> usize
If possible give a hint of expected size of the encoding. Read more
Source§fn encode_to<__CodecOutputEdqy>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy,
)
fn encode_to<__CodecOutputEdqy>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy, )
Convert self to a slice and append it to the destination.
Source§fn using_encoded<__CodecOutputReturn, __CodecUsingEncodedCallback>(
&self,
f: __CodecUsingEncodedCallback,
) -> __CodecOutputReturn
fn using_encoded<__CodecOutputReturn, __CodecUsingEncodedCallback>( &self, f: __CodecUsingEncodedCallback, ) -> __CodecOutputReturn
Convert self to a slice and then invoke the given closure with it.
Source§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
Source§impl<T, S> Hash for SignatureError<T, S>
impl<T, S> Hash for SignatureError<T, S>
Source§impl<T, S> PartialEq for SignatureError<T, S>
impl<T, S> PartialEq for SignatureError<T, S>
impl<T, S> EncodeLike for SignatureError<T, S>
impl<T, S> Eq for SignatureError<T, S>
impl<T, S> StructuralPartialEq for SignatureError<T, S>
Auto Trait Implementations§
impl<T, S> Freeze for SignatureError<T, S>
impl<T, S> RefUnwindSafe for SignatureError<T, S>where
T: RefUnwindSafe,
S: RefUnwindSafe,
impl<T, S> Send for SignatureError<T, S>where
T: Send,
impl<T, S> Sync for SignatureError<T, S>where
T: Sync,
impl<T, S> Unpin for SignatureError<T, S>
impl<T, S> UnwindSafe for SignatureError<T, S>where
T: UnwindSafe,
S: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> DecodeLimit for Twhere
T: Decode,
impl<T> DecodeLimit for Twhere
T: Decode,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more