pub struct Multisigned<T, MK>where
T: Signable,
MK: MultiKeychain,{ /* private fields */ }
Expand description
Signable data together with a complete multisignature.
An instance of Multisigned<T: Signable, MK: MultiKeychain>
consists of a data of type T
together with a multisignature which is valid and complete according to a multikeychain
reference MK
.
Implementations§
Source§impl<T, MK> Multisigned<T, MK>where
T: Signable,
MK: MultiKeychain,
impl<T, MK> Multisigned<T, MK>where
T: Signable,
MK: MultiKeychain,
Sourcepub fn as_signable(&self) -> &T
pub fn as_signable(&self) -> &T
Get a reference to the multisigned object.
pub fn into_unchecked( self, ) -> UncheckedSigned<T, <MK as MultiKeychain>::PartialMultisignature>
Trait Implementations§
Source§impl<T, MK> Clone for Multisigned<T, MK>
impl<T, MK> Clone for Multisigned<T, MK>
Source§fn clone(&self) -> Multisigned<T, MK>
fn clone(&self) -> Multisigned<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 Multisigned<T, MK>where
T: Debug + Signable,
MK: Debug + MultiKeychain,
<MK as MultiKeychain>::PartialMultisignature: Debug,
impl<T, MK> Debug for Multisigned<T, MK>where
T: Debug + Signable,
MK: Debug + MultiKeychain,
<MK as MultiKeychain>::PartialMultisignature: Debug,
Source§impl<T, MK> Decode for Multisigned<T, MK>where
T: Signable,
MK: MultiKeychain,
UncheckedSigned<T, <MK as MultiKeychain>::PartialMultisignature>: Decode,
impl<T, MK> Decode for Multisigned<T, MK>where
T: Signable,
MK: MultiKeychain,
UncheckedSigned<T, <MK as MultiKeychain>::PartialMultisignature>: Decode,
Source§fn decode<__CodecInputEdqy>(
__codec_input_edqy: &mut __CodecInputEdqy,
) -> Result<Multisigned<T, MK>, Error>where
__CodecInputEdqy: Input,
fn decode<__CodecInputEdqy>(
__codec_input_edqy: &mut __CodecInputEdqy,
) -> Result<Multisigned<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 Multisigned<T, MK>where
T: Signable,
MK: MultiKeychain,
UncheckedSigned<T, <MK as MultiKeychain>::PartialMultisignature>: Encode,
impl<T, MK> Encode for Multisigned<T, MK>where
T: Signable,
MK: MultiKeychain,
UncheckedSigned<T, <MK as MultiKeychain>::PartialMultisignature>: Encode,
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> From<Multisigned<T, MK>> for UncheckedSigned<T, <MK as MultiKeychain>::PartialMultisignature>where
T: Signable,
MK: MultiKeychain,
impl<T, MK> From<Multisigned<T, MK>> for UncheckedSigned<T, <MK as MultiKeychain>::PartialMultisignature>where
T: Signable,
MK: MultiKeychain,
Source§fn from(
signed: Multisigned<T, MK>,
) -> UncheckedSigned<T, <MK as MultiKeychain>::PartialMultisignature>
fn from( signed: Multisigned<T, MK>, ) -> UncheckedSigned<T, <MK as MultiKeychain>::PartialMultisignature>
Converts to this type from the input type.
Source§impl<T, MK> Hash for Multisigned<T, MK>where
T: Hash + Signable,
MK: Hash + MultiKeychain,
<MK as MultiKeychain>::PartialMultisignature: Hash,
impl<T, MK> Hash for Multisigned<T, MK>where
T: Hash + Signable,
MK: Hash + MultiKeychain,
<MK as MultiKeychain>::PartialMultisignature: Hash,
Source§impl<T, MK> PartialEq for Multisigned<T, MK>where
T: PartialEq + Signable,
MK: PartialEq + MultiKeychain,
<MK as MultiKeychain>::PartialMultisignature: PartialEq,
impl<T, MK> PartialEq for Multisigned<T, MK>where
T: PartialEq + Signable,
MK: PartialEq + MultiKeychain,
<MK as MultiKeychain>::PartialMultisignature: PartialEq,
impl<T, MK> EncodeLike for Multisigned<T, MK>where
T: Signable,
MK: MultiKeychain,
UncheckedSigned<T, <MK as MultiKeychain>::PartialMultisignature>: Encode,
impl<T, MK> Eq for Multisigned<T, MK>
impl<T, MK> StructuralPartialEq for Multisigned<T, MK>where
T: Signable,
MK: MultiKeychain,
Auto Trait Implementations§
impl<T, MK> Freeze for Multisigned<T, MK>
impl<T, MK> RefUnwindSafe for Multisigned<T, MK>
impl<T, MK> Send for Multisigned<T, MK>where
T: Send,
impl<T, MK> Sync for Multisigned<T, MK>where
T: Sync,
impl<T, MK> Unpin for Multisigned<T, MK>
impl<T, MK> UnwindSafe for Multisigned<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