pub enum BridgeCallConvention {
Sync,
Async,
SyncPromise,
}Variants§
Trait Implementations§
Source§impl Clone for BridgeCallConvention
impl Clone for BridgeCallConvention
Source§fn clone(&self) -> BridgeCallConvention
fn clone(&self) -> BridgeCallConvention
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 BridgeCallConvention
Source§impl Debug for BridgeCallConvention
impl Debug for BridgeCallConvention
Source§impl<'de> Deserialize<'de> for BridgeCallConvention
impl<'de> Deserialize<'de> for BridgeCallConvention
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 BridgeCallConvention
Source§impl PartialEq for BridgeCallConvention
impl PartialEq for BridgeCallConvention
Source§fn eq(&self, other: &BridgeCallConvention) -> bool
fn eq(&self, other: &BridgeCallConvention) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BridgeCallConvention
Auto Trait Implementations§
impl Freeze for BridgeCallConvention
impl RefUnwindSafe for BridgeCallConvention
impl Send for BridgeCallConvention
impl Sync for BridgeCallConvention
impl Unpin for BridgeCallConvention
impl UnsafeUnpin for BridgeCallConvention
impl UnwindSafe for BridgeCallConvention
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