Enum soroban_env_host::InvokerType
source · 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 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
This method tests for
self
and other
values to be equal, and is used
by ==
.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
§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
source§fn try_from(v: u64) -> Result<InvokerType, <InvokerType as TryFrom<u64>>::Error>
fn try_from(v: u64) -> Result<InvokerType, <InvokerType as TryFrom<u64>>::Error>
Performs the conversion.
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§
source§impl<T, U, E, C> Compare<(T, U)> for Cwhere
C: Compare<T, Error = E, Error = E> + Compare<U>,
impl<T, U, E, C> Compare<(T, U)> for Cwhere C: Compare<T, Error = E, Error = E> + Compare<U>,
source§impl<T, U, V, E, C> Compare<(T, U, V)> for Cwhere
C: Compare<T, Error = E, Error = E, Error = E> + Compare<U> + Compare<V>,
impl<T, U, V, E, C> Compare<(T, U, V)> for Cwhere C: Compare<T, Error = E, Error = E, Error = E> + Compare<U> + Compare<V>,
§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
.§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
.§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.§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.