pub enum IntAddr {
Std(StdAddr),
Var(VarAddr),
}Expand description
Internal message address.
Variants§
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IntAddr
impl<'de> Deserialize<'de> for IntAddr
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl FromPlainAbi for IntAddr
impl FromPlainAbi for IntAddr
Source§fn from_plain_abi(value: PlainAbiValue) -> Result<Self>
fn from_plain_abi(value: PlainAbiValue) -> Result<Self>
Constructs self from the plain ABI value.
Source§impl IntoPlainAbi for IntAddr
impl IntoPlainAbi for IntAddr
Source§fn as_plain_abi(&self) -> PlainAbiValue
fn as_plain_abi(&self) -> PlainAbiValue
Returns a corresponding plain ABI value. Read more
Source§fn into_plain_abi(self) -> PlainAbiValuewhere
Self: Sized,
fn into_plain_abi(self) -> PlainAbiValuewhere
Self: Sized,
Converts into a corresponding plain ABI value.
Source§impl Ord for IntAddr
impl Ord for IntAddr
Source§impl PartialOrd for IntAddr
impl PartialOrd for IntAddr
Source§impl Store for IntAddr
impl Store for IntAddr
Source§fn store_into(
&self,
builder: &mut CellBuilder,
context: &mut dyn CellContext,
) -> Result<(), Error>
fn store_into( &self, builder: &mut CellBuilder, context: &mut dyn CellContext, ) -> Result<(), Error>
Tries to store itself into the cell builder.
Source§impl WithPlainAbiType for IntAddr
impl WithPlainAbiType for IntAddr
Source§fn plain_abi_type() -> PlainAbiType
fn plain_abi_type() -> PlainAbiType
Returns a corresponding plain ABI type.
impl Eq for IntAddr
impl StructuralPartialEq for IntAddr
Auto Trait Implementations§
impl Freeze for IntAddr
impl RefUnwindSafe for IntAddr
impl Send for IntAddr
impl Sync for IntAddr
impl Unpin for IntAddr
impl UnwindSafe for IntAddr
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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.