pub struct UncheckedSigned<T: Hashable> {
pub signed: T,
pub signature: PrimitiveSignature,
pub signer: Address,
/* private fields */
}
Fields§
§signed: T
§signature: PrimitiveSignature
§signer: Address
Implementations§
Source§impl UncheckedSigned<Transaction>
impl UncheckedSigned<Transaction>
Sourcepub fn into_signed_unchecked(self) -> Signed<Transaction>
pub fn into_signed_unchecked(self) -> Signed<Transaction>
Convert from an UncheckedSigned<Transaction>
to a fully fledged Signed<Transaction>
without re-verifying.
Trait Implementations§
Source§impl<T: Clone + Hashable> Clone for UncheckedSigned<T>
impl<T: Clone + Hashable> Clone for UncheckedSigned<T>
Source§fn clone(&self) -> UncheckedSigned<T>
fn clone(&self) -> UncheckedSigned<T>
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: Hashable> Deref for UncheckedSigned<T>
impl<T: Hashable> Deref for UncheckedSigned<T>
Source§impl<'de> Deserialize<'de> for UncheckedSigned<Transaction>
impl<'de> Deserialize<'de> for UncheckedSigned<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 From<Signed<TxLegacy>> for UncheckedSigned<Transaction>
impl From<Signed<TxLegacy>> for UncheckedSigned<Transaction>
Source§fn from(signed: Signed<Transaction>) -> Self
fn from(signed: Signed<Transaction>) -> Self
Converts to this type from the input type.
Source§impl<T: Hashable + Clone> Hashable for UncheckedSigned<T>
impl<T: Hashable + Clone> Hashable for UncheckedSigned<T>
fn hash_custom(&self) -> Hash
Source§impl<T: Merkleizable + Hashable> Merkleizable for UncheckedSigned<T>
impl<T: Merkleizable + Hashable> Merkleizable for UncheckedSigned<T>
fn append_leaves(&self, builder: &mut MerkleBuilder)
fn leaves(&self) -> Vec<(String, Hash)>
fn to_merkle_tree(&self) -> StandardMerkleTree
fn generate_proof<T: Merkleizable>( &self, prefix: &str, item: &T, ) -> Result<MerkleProof>
fn generate_proofs<T: Merkleizable>( &self, prefix: &str, items: &[T], ) -> Result<Vec<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 UncheckedSigned<Transaction>
impl Serialize for UncheckedSigned<Transaction>
Source§impl TryFrom<Signed<TxLegacy>> for UncheckedSigned<Transaction>
impl TryFrom<Signed<TxLegacy>> for UncheckedSigned<Transaction>
impl<T: Eq + Hashable> Eq for UncheckedSigned<T>
impl<T: Hashable> StructuralPartialEq for UncheckedSigned<T>
Auto Trait Implementations§
impl<T> Freeze for UncheckedSigned<T>where
T: Freeze,
impl<T> RefUnwindSafe for UncheckedSigned<T>where
T: RefUnwindSafe,
impl<T> Send for UncheckedSigned<T>where
T: Send,
impl<T> Sync for UncheckedSigned<T>where
T: Sync,
impl<T> Unpin for UncheckedSigned<T>where
T: Unpin,
impl<T> UnwindSafe for UncheckedSigned<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