pub struct IncompleteMultisignatureError<T, MK>where
T: Signable,
MK: MultiKeychain,{
pub partial: PartiallyMultisigned<T, MK>,
}
Expand description
Error resulting from multisignature being incomplete.
§Hash
derivation
PartiallyMultisigned
only conditionally implements Hash
:
impl<'a, T: Hash + Signable, MK: Hash + MultiKeychain>
Hash for PartiallyMultisigned<T, MK>
where MK::PartialMultisignature: Hash {}
i.e. Rust automatically adds where MK::PartialMultisignature: Hash
.
This is a problem, since such where
guard cannot be inferred for
IncompleteMultisignatureError
(because we do not use the associate type
MK::PartialMultisignature
of MK
explicitly here).
The alternative solution could be to make Signature: Hash
or add a phantom marker using
MK::PartialMultisignature
type.
Fields§
§partial: PartiallyMultisigned<T, MK>
Trait Implementations§
Source§impl<T, MK> Clone for IncompleteMultisignatureError<T, MK>
impl<T, MK> Clone for IncompleteMultisignatureError<T, MK>
Source§fn clone(&self) -> IncompleteMultisignatureError<T, MK>
fn clone(&self) -> IncompleteMultisignatureError<T, MK>
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, MK> Debug for IncompleteMultisignatureError<T, MK>
impl<T, MK> Debug for IncompleteMultisignatureError<T, MK>
Source§impl<T, MK> Decode for IncompleteMultisignatureError<T, MK>
impl<T, MK> Decode for IncompleteMultisignatureError<T, MK>
Source§fn decode<__CodecInputEdqy>(
__codec_input_edqy: &mut __CodecInputEdqy,
) -> Result<IncompleteMultisignatureError<T, MK>, Error>where
__CodecInputEdqy: Input,
fn decode<__CodecInputEdqy>(
__codec_input_edqy: &mut __CodecInputEdqy,
) -> Result<IncompleteMultisignatureError<T, MK>, 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, MK> Encode for IncompleteMultisignatureError<T, MK>
impl<T, MK> Encode for IncompleteMultisignatureError<T, MK>
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, MK> PartialEq for IncompleteMultisignatureError<T, MK>
impl<T, MK> PartialEq for IncompleteMultisignatureError<T, MK>
Source§fn eq(&self, other: &IncompleteMultisignatureError<T, MK>) -> bool
fn eq(&self, other: &IncompleteMultisignatureError<T, MK>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl<T, MK> EncodeLike for IncompleteMultisignatureError<T, MK>
impl<T, MK> Eq for IncompleteMultisignatureError<T, MK>
impl<T, MK> StructuralPartialEq for IncompleteMultisignatureError<T, MK>where
T: Signable,
MK: MultiKeychain,
Auto Trait Implementations§
impl<T, MK> Freeze for IncompleteMultisignatureError<T, MK>
impl<T, MK> RefUnwindSafe for IncompleteMultisignatureError<T, MK>
impl<T, MK> Send for IncompleteMultisignatureError<T, MK>where
T: Send,
impl<T, MK> Sync for IncompleteMultisignatureError<T, MK>where
T: Sync,
impl<T, MK> Unpin for IncompleteMultisignatureError<T, MK>
impl<T, MK> UnwindSafe for IncompleteMultisignatureError<T, MK>
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