pub enum SnsCanisterCallType {
Query,
CompositeQuery,
IngressUpdate,
}Expand description
SnsCanisterCallType
Invocation mode used for a native SNS canister method.
Variants§
Query
A non-replicated query call.
CompositeQuery
A non-replicated composite query call.
IngressUpdate
A replicated update submitted through ingress.
Implementations§
Trait Implementations§
Source§impl Clone for SnsCanisterCallType
impl Clone for SnsCanisterCallType
Source§fn clone(&self) -> SnsCanisterCallType
fn clone(&self) -> SnsCanisterCallType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SnsCanisterCallType
Source§impl Debug for SnsCanisterCallType
impl Debug for SnsCanisterCallType
Source§impl<'de> Deserialize<'de> for SnsCanisterCallType
impl<'de> Deserialize<'de> for SnsCanisterCallType
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
impl Eq for SnsCanisterCallType
Source§impl PartialEq for SnsCanisterCallType
impl PartialEq for SnsCanisterCallType
Source§impl Serialize for SnsCanisterCallType
impl Serialize for SnsCanisterCallType
impl StructuralPartialEq for SnsCanisterCallType
Auto Trait Implementations§
impl Freeze for SnsCanisterCallType
impl RefUnwindSafe for SnsCanisterCallType
impl Send for SnsCanisterCallType
impl Sync for SnsCanisterCallType
impl Unpin for SnsCanisterCallType
impl UnsafeUnpin for SnsCanisterCallType
impl UnwindSafe for SnsCanisterCallType
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