#[repr(C)]pub struct SplitterResult {
pub splitters: *mut u64,
pub n_splitters: usize,
pub singletons: *mut u64,
pub n_singletons: usize,
pub duplicates: *mut u64,
pub n_duplicates: usize,
}Expand description
C-compatible result structure for splitter detection
Fields§
§splitters: *mut u64§n_splitters: usize§singletons: *mut u64§n_singletons: usize§duplicates: *mut u64§n_duplicates: usizeAuto Trait Implementations§
impl Freeze for SplitterResult
impl RefUnwindSafe for SplitterResult
impl !Send for SplitterResult
impl !Sync for SplitterResult
impl Unpin for SplitterResult
impl UnwindSafe for SplitterResult
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> 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