Struct everscale_types::models::message::VarAddr
source · pub struct VarAddr {
pub anycast: Option<Box<Anycast>>,
pub address_len: Uint9,
pub workchain: i32,
pub address: Vec<u8>,
}Expand description
Variable-length internal address.
Fields§
§anycast: Option<Box<Anycast>>Optional anycast info.
address_len: Uint9Address length in bits.
workchain: i32Workchain id (full range).
address: Vec<u8>Variable-length address.
Implementations§
Trait Implementations§
source§impl Ord for VarAddr
impl Ord for VarAddr
source§impl PartialEq<VarAddr> for VarAddr
impl PartialEq<VarAddr> for VarAddr
source§impl PartialOrd<VarAddr> for VarAddr
impl PartialOrd<VarAddr> for VarAddr
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresource§impl<C: CellFamily> Store<C> for VarAddr
impl<C: CellFamily> Store<C> for VarAddr
source§fn store_into(
&self,
builder: &mut CellBuilder<C>,
finalizer: &mut dyn Finalizer<C>
) -> bool
fn store_into( &self, builder: &mut CellBuilder<C>, finalizer: &mut dyn Finalizer<C> ) -> bool
Tries to store itself into the cell builder.