pub struct PostageStamp {
pub address: Address,
pub block: u64,
}Expand description
Postage stamp contract deployment information.
Fields§
§address: AddressContract address.
block: u64Deployment block number.
Implementations§
Trait Implementations§
Source§impl Clone for PostageStamp
impl Clone for PostageStamp
Source§fn clone(&self) -> PostageStamp
fn clone(&self) -> PostageStamp
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PostageStamp
Source§impl Debug for PostageStamp
impl Debug for PostageStamp
impl Eq for PostageStamp
Source§impl PartialEq for PostageStamp
impl PartialEq for PostageStamp
Source§fn eq(&self, other: &PostageStamp) -> bool
fn eq(&self, other: &PostageStamp) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PostageStamp
Auto Trait Implementations§
impl Freeze for PostageStamp
impl RefUnwindSafe for PostageStamp
impl Send for PostageStamp
impl Sync for PostageStamp
impl Unpin for PostageStamp
impl UnsafeUnpin for PostageStamp
impl UnwindSafe for PostageStamp
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