Enum soroban_env_common::InvokerType
source · #[repr(u64)]
pub enum InvokerType {
Account,
Contract,
}
Variants§
Trait Implementations§
source§impl Clone for InvokerType
impl Clone for InvokerType
source§fn clone(&self) -> InvokerType
fn clone(&self) -> InvokerType
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 InvokerType
impl Debug for InvokerType
source§impl From<InvokerType> for u64
impl From<InvokerType> for u64
source§fn from(v: InvokerType) -> Self
fn from(v: InvokerType) -> Self
Converts to this type from the input type.
source§impl Ord for InvokerType
impl Ord for InvokerType
source§fn cmp(&self, other: &InvokerType) -> Ordering
fn cmp(&self, other: &InvokerType) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<InvokerType> for InvokerType
impl PartialEq<InvokerType> for InvokerType
source§fn eq(&self, other: &InvokerType) -> bool
fn eq(&self, other: &InvokerType) -> bool
source§impl PartialOrd<InvokerType> for InvokerType
impl PartialOrd<InvokerType> for InvokerType
source§fn partial_cmp(&self, other: &InvokerType) -> Option<Ordering>
fn partial_cmp(&self, other: &InvokerType) -> Option<Ordering>
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 TryFrom<u64> for InvokerType
impl TryFrom<u64> for InvokerType
impl Copy for InvokerType
impl Eq for InvokerType
impl StructuralEq for InvokerType
impl StructuralPartialEq for InvokerType
Auto Trait Implementations§
impl RefUnwindSafe for InvokerType
impl Send for InvokerType
impl Sync for InvokerType
impl Unpin for InvokerType
impl UnwindSafe for InvokerType
Blanket Implementations§
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read more§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more