pub struct ExtensionList { /* private fields */ }
Expand description
A mls_rs::ExtensionList
wrapper.
Trait Implementations§
Source§impl Clone for ExtensionList
impl Clone for ExtensionList
Source§fn clone(&self) -> ExtensionList
fn clone(&self) -> ExtensionList
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 ExtensionList
impl Debug for ExtensionList
Source§impl From<ExtensionList> for ExtensionList
impl From<ExtensionList> for ExtensionList
Source§fn from(inner: ExtensionList) -> Self
fn from(inner: ExtensionList) -> Self
Converts to this type from the input type.
Source§impl<T> LiftRef<T> for ExtensionList
impl<T> LiftRef<T> for ExtensionList
type LiftType = Arc<ExtensionList>
Source§impl<T> LowerReturn<T> for ExtensionList
impl<T> LowerReturn<T> for ExtensionList
const TYPE_ID_META: MetadataBuffer
Source§type ReturnType = <ExtensionList as FfiConverterArc<UniFfiTag>>::FfiType
type ReturnType = <ExtensionList as FfiConverterArc<UniFfiTag>>::FfiType
The type that should be returned by scaffolding functions for this type. Read more
Source§fn lower_return(obj: Self) -> Result<Self::ReturnType, RustBuffer>
fn lower_return(obj: Self) -> Result<Self::ReturnType, RustBuffer>
Lower this value for scaffolding function return Read more
Auto Trait Implementations§
impl Freeze for ExtensionList
impl RefUnwindSafe for ExtensionList
impl Send for ExtensionList
impl Sync for ExtensionList
impl Unpin for ExtensionList
impl UnwindSafe for ExtensionList
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more