Struct ethereum::TransactionSignature
source · pub struct TransactionSignature { /* private fields */ }Implementations
Trait Implementations
sourceimpl Clone for TransactionSignature
impl Clone for TransactionSignature
sourcefn clone(&self) -> TransactionSignature
fn clone(&self) -> TransactionSignature
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for TransactionSignature
impl Debug for TransactionSignature
sourceimpl Decode for TransactionSignature
impl Decode for TransactionSignature
sourcefn decode<I: Input>(value: &mut I) -> Result<Self, Error>
fn decode<I: Input>(value: &mut I) -> Result<Self, Error>
Attempt to deserialise the value from input.
sourcefn skip<I>(input: &mut I) -> Result<(), Error>where
I: Input,
fn skip<I>(input: &mut I) -> Result<(), Error>where
I: Input,
Attempt to skip the encoded value from input. Read more
sourcefn encoded_fixed_size() -> Option<usize>
fn encoded_fixed_size() -> Option<usize>
Returns the fixed encoded size of the type. Read more
sourceimpl Encode for TransactionSignature
impl Encode for TransactionSignature
sourcefn size_hint(&self) -> usize
fn size_hint(&self) -> usize
If possible give a hint of expected size of the encoding. Read more
sourcefn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R
fn using_encoded<R, F: FnOnce(&[u8]) -> R>(&self, f: F) -> R
Convert self to a slice and then invoke the given closure with it.
sourcefn encode_to<T>(&self, dest: &mut T)where
T: Output + ?Sized,
fn encode_to<T>(&self, dest: &mut T)where
T: Output + ?Sized,
Convert self to a slice and append it to the destination.
sourcefn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
sourceimpl PartialEq<TransactionSignature> for TransactionSignature
impl PartialEq<TransactionSignature> for TransactionSignature
sourcefn eq(&self, other: &TransactionSignature) -> bool
fn eq(&self, other: &TransactionSignature) -> bool
impl Eq for TransactionSignature
impl StructuralEq for TransactionSignature
impl StructuralPartialEq for TransactionSignature
Auto Trait Implementations
impl RefUnwindSafe for TransactionSignature
impl Send for TransactionSignature
impl Sync for TransactionSignature
impl Unpin for TransactionSignature
impl UnwindSafe for TransactionSignature
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more