#[repr(u8)]pub enum FFI_InsertOp {
Append = 0,
Overwrite = 1,
Replace = 2,
}Expand description
FFI safe version of InsertOp.
Variants§
Trait Implementations§
Source§impl From<FFI_InsertOp> for InsertOp
impl From<FFI_InsertOp> for InsertOp
Source§fn from(value: FFI_InsertOp) -> Self
fn from(value: FFI_InsertOp) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FFI_InsertOp
impl RefUnwindSafe for FFI_InsertOp
impl Send for FFI_InsertOp
impl Sync for FFI_InsertOp
impl Unpin for FFI_InsertOp
impl UnsafeUnpin for FFI_InsertOp
impl UnwindSafe for FFI_InsertOp
Blanket Implementations§
Source§impl<Source> AccessAs for Source
impl<Source> AccessAs for Source
impl<T> Allocation for T
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> 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