pub enum InteractionTransport {
ControllerLocal,
ProviderProxied,
DirectBuiltInApi {
operation_id: BuiltInApiOperationId,
},
}Variants§
Trait Implementations§
Source§impl Clone for InteractionTransport
impl Clone for InteractionTransport
Source§fn clone(&self) -> InteractionTransport
fn clone(&self) -> InteractionTransport
Returns a duplicate 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 InteractionTransport
impl Debug for InteractionTransport
Source§impl<'de> Deserialize<'de> for InteractionTransport
impl<'de> Deserialize<'de> for InteractionTransport
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<InteractionTransport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<InteractionTransport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for InteractionTransport
impl PartialEq for InteractionTransport
Source§impl Serialize for InteractionTransport
impl Serialize for InteractionTransport
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for InteractionTransport
impl StructuralPartialEq for InteractionTransport
Auto Trait Implementations§
impl Freeze for InteractionTransport
impl RefUnwindSafe for InteractionTransport
impl Send for InteractionTransport
impl Sync for InteractionTransport
impl Unpin for InteractionTransport
impl UnsafeUnpin for InteractionTransport
impl UnwindSafe for InteractionTransport
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