#[repr(C)]pub struct FFI_SortOptions {
pub descending: bool,
pub nulls_first: bool,
}Fields§
§descending: bool§nulls_first: boolTrait Implementations§
Source§impl Debug for FFI_SortOptions
impl Debug for FFI_SortOptions
Source§impl From<&FFI_SortOptions> for SortOptions
impl From<&FFI_SortOptions> for SortOptions
Source§fn from(value: &FFI_SortOptions) -> Self
fn from(value: &FFI_SortOptions) -> Self
Converts to this type from the input type.
Source§impl From<&SortOptions> for FFI_SortOptions
impl From<&SortOptions> for FFI_SortOptions
Source§fn from(value: &SortOptions) -> Self
fn from(value: &SortOptions) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FFI_SortOptions
impl RefUnwindSafe for FFI_SortOptions
impl Send for FFI_SortOptions
impl Sync for FFI_SortOptions
impl Unpin for FFI_SortOptions
impl UnsafeUnpin for FFI_SortOptions
impl UnwindSafe for FFI_SortOptions
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