pub struct FipsBorrowMut<'a> { /* private fields */ }Expand description
Struct representing an immutable borrow of data belonging to a single particle member
Implementations§
Source§impl<'a> FipsBorrowMut<'a>
impl<'a> FipsBorrowMut<'a>
Sourcepub fn as_i64(&self) -> Result<i64>
pub fn as_i64(&self) -> Result<i64>
Interpret the data as a single i64 (only sensible for constants)
Sourcepub fn as_f64(&self) -> Result<f64>
pub fn as_f64(&self) -> Result<f64>
Interpret the data as a single f64 (only sensible for constants)
Sourcepub fn as_f64_slice(&mut self) -> Result<&mut [f64]>
pub fn as_f64_slice(&mut self) -> Result<&mut [f64]>
Interpret the data as a slice of double values
Sourcepub fn as_i64_slice(&mut self) -> Result<&mut [i64]>
pub fn as_i64_slice(&mut self) -> Result<&mut [i64]>
Interpret the data as a slice of double values
Auto Trait Implementations§
impl<'a> Freeze for FipsBorrowMut<'a>
impl<'a> RefUnwindSafe for FipsBorrowMut<'a>
impl<'a> !Send for FipsBorrowMut<'a>
impl<'a> Sync for FipsBorrowMut<'a>
impl<'a> Unpin for FipsBorrowMut<'a>
impl<'a> UnwindSafe for FipsBorrowMut<'a>
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