pub struct Nullification {
pub view: u64,
pub signature: Signature,
}Fields§
§view: u64§signature: SignatureImplementations§
Trait Implementations§
Source§impl Clone for Nullification
impl Clone for Nullification
Source§fn clone(&self) -> Nullification
fn clone(&self) -> Nullification
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 Debug for Nullification
impl Debug for Nullification
Source§impl PartialEq for Nullification
impl PartialEq for Nullification
Source§impl SizedSerialize for Nullification
impl SizedSerialize for Nullification
const SERIALIZED_LEN: usize = 104usize
impl Eq for Nullification
impl StructuralPartialEq for Nullification
Auto Trait Implementations§
impl Freeze for Nullification
impl RefUnwindSafe for Nullification
impl Send for Nullification
impl Sync for Nullification
impl Unpin for Nullification
impl UnwindSafe for Nullification
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> 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