pub struct MmapArray1I64 { /* private fields */ }Expand description
A memory-mapped array of i64 values.
Implementations§
Source§impl MmapArray1I64
impl MmapArray1I64
Sourcepub fn from_raw_file(path: &Path) -> Result<Self>
pub fn from_raw_file(path: &Path) -> Result<Self>
Load a 1D i64 array from a raw binary file.
Auto Trait Implementations§
impl Freeze for MmapArray1I64
impl RefUnwindSafe for MmapArray1I64
impl Send for MmapArray1I64
impl Sync for MmapArray1I64
impl Unpin for MmapArray1I64
impl UnwindSafe for MmapArray1I64
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