pub enum FfiMarkerKind {
NapiExport,
NapiCall,
PyO3Export,
PyO3Call,
CgoExport,
GoCallC,
JniExport,
JniCall,
}Variants§
Trait Implementations§
Source§impl Clone for FfiMarkerKind
impl Clone for FfiMarkerKind
Source§fn clone(&self) -> FfiMarkerKind
fn clone(&self) -> FfiMarkerKind
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 moreSource§impl Debug for FfiMarkerKind
impl Debug for FfiMarkerKind
Source§impl Default for FfiMarkerKind
impl Default for FfiMarkerKind
Source§fn default() -> FfiMarkerKind
fn default() -> FfiMarkerKind
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FfiMarkerKind
impl<'de> Deserialize<'de> for FfiMarkerKind
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<FfiMarkerKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FfiMarkerKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FfiMarkerKind
impl PartialEq for FfiMarkerKind
Source§fn eq(&self, other: &FfiMarkerKind) -> bool
fn eq(&self, other: &FfiMarkerKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FfiMarkerKind
impl Serialize for FfiMarkerKind
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 FfiMarkerKind
impl StructuralPartialEq for FfiMarkerKind
Auto Trait Implementations§
impl Freeze for FfiMarkerKind
impl RefUnwindSafe for FfiMarkerKind
impl Send for FfiMarkerKind
impl Sync for FfiMarkerKind
impl Unpin for FfiMarkerKind
impl UnsafeUnpin for FfiMarkerKind
impl UnwindSafe for FfiMarkerKind
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