pub struct IntermediateAddrSimple {
pub workchain: i8,
pub address_prefix: u64,
}Expand description
Address prefix with a basic workchain id.
Fields§
§workchain: i8Basic workchain id.
See WorkchainFormatBasic.
address_prefix: u64High 64 bits of the address.
Trait Implementations§
Source§impl Clone for IntermediateAddrSimple
impl Clone for IntermediateAddrSimple
Source§fn clone(&self) -> IntermediateAddrSimple
fn clone(&self) -> IntermediateAddrSimple
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IntermediateAddrSimple
impl Debug for IntermediateAddrSimple
Source§impl From<IntermediateAddrSimple> for IntermediateAddr
impl From<IntermediateAddrSimple> for IntermediateAddr
Source§fn from(addr: IntermediateAddrSimple) -> Self
fn from(addr: IntermediateAddrSimple) -> Self
Converts to this type from the input type.
Source§impl Hash for IntermediateAddrSimple
impl Hash for IntermediateAddrSimple
Source§impl<'tlb> Load<'tlb> for IntermediateAddrSimple
impl<'tlb> Load<'tlb> for IntermediateAddrSimple
Source§impl PartialEq for IntermediateAddrSimple
impl PartialEq for IntermediateAddrSimple
Source§fn eq(&self, other: &IntermediateAddrSimple) -> bool
fn eq(&self, other: &IntermediateAddrSimple) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IntermediateAddrSimple
impl Serialize for IntermediateAddrSimple
Source§impl Store for IntermediateAddrSimple
impl Store for IntermediateAddrSimple
Source§fn store_into(
&self,
__builder: &mut CellBuilder,
__context: &dyn CellContext,
) -> Result<(), Error>
fn store_into( &self, __builder: &mut CellBuilder, __context: &dyn CellContext, ) -> Result<(), Error>
Tries to store itself into the cell builder.
impl Copy for IntermediateAddrSimple
impl Eq for IntermediateAddrSimple
impl StructuralPartialEq for IntermediateAddrSimple
Auto Trait Implementations§
impl Freeze for IntermediateAddrSimple
impl RefUnwindSafe for IntermediateAddrSimple
impl Send for IntermediateAddrSimple
impl Sync for IntermediateAddrSimple
impl Unpin for IntermediateAddrSimple
impl UnwindSafe for IntermediateAddrSimple
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compares
self to key and returns true if they are equal.