#[non_exhaustive]pub struct Signed<T> {
pub signed: T,
pub signature: Signature,
pub signer: Address,
pub hash: OnceLock<Hash>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.signed: T
§signature: Signature
§signer: Address
§hash: OnceLock<Hash>
Implementations§
Source§impl<T> Signed<T>where
T: SignableTransaction<Signature>,
impl<T> Signed<T>where
T: SignableTransaction<Signature>,
Sourcepub unsafe fn new_unchecked(
signed: T,
signature: Signature,
signer: Address,
) -> Self
pub unsafe fn new_unchecked( signed: T, signature: Signature, signer: Address, ) -> Self
Creates a new Signed<T>
with the given signed
, signature
, and signer
.
§Safety
The caller must ensure that the signer
is the correct address that corresponds to the
signature
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Signed<Transaction>
impl<'de> Deserialize<'de> for Signed<Transaction>
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<T: Merkleizable + Hashable> Merkleizable for Signed<T>
impl<T: Merkleizable + Hashable> Merkleizable for Signed<T>
fn append_leaves(&self, builder: &mut MerkleBuilder)
fn leaves(&self) -> Vec<(String, Hash)>
fn to_merkle_tree(&self) -> StandardMerkleTree
fn generate_proof<T: ToLeaf>( &self, prefix: &str, item: &T, ) -> Option<MerkleProof>
fn generate_proofs<T: Merkleizable>( &self, prefix: &str, items: &[T], ) -> Vec<Option<MerkleProof>>
fn generate_multi_proof<T: Merkleizable>( &self, prefix: &str, item: &T, ) -> Option<(Vec<Hash>, MerkleMultiProof)>
fn generate_multi_proofs<T: Merkleizable>( &self, prefix: &str, items: &[T], ) -> Option<(Vec<Hash>, MerkleMultiProof)>
Source§impl Serialize for Signed<Transaction>
impl Serialize for Signed<Transaction>
impl<T: Eq> Eq for Signed<T>
impl<T> StructuralPartialEq for Signed<T>
Auto Trait Implementations§
impl<T> !Freeze for Signed<T>
impl<T> RefUnwindSafe for Signed<T>where
T: RefUnwindSafe,
impl<T> Send for Signed<T>where
T: Send,
impl<T> Sync for Signed<T>where
T: Sync,
impl<T> Unpin for Signed<T>where
T: Unpin,
impl<T> UnwindSafe for Signed<T>where
T: 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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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