pub struct MultiDimLoad {
pub load: [i32; 8],
pub size: usize,
}
Expand description
Specifies multi dimensional load type.
Fields§
§load: [i32; 8]
Load data.
size: usize
Actual used size.
Implementations§
Trait Implementations§
Source§impl Add for MultiDimLoad
impl Add for MultiDimLoad
Source§impl Clone for MultiDimLoad
impl Clone for MultiDimLoad
Source§fn clone(&self) -> MultiDimLoad
fn clone(&self) -> MultiDimLoad
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MultiDimLoad
impl Debug for MultiDimLoad
Source§impl Default for MultiDimLoad
impl Default for MultiDimLoad
Source§impl Display for MultiDimLoad
impl Display for MultiDimLoad
Source§impl Load for MultiDimLoad
impl Load for MultiDimLoad
Source§impl Mul<f64> for MultiDimLoad
impl Mul<f64> for MultiDimLoad
Source§impl PartialEq for MultiDimLoad
impl PartialEq for MultiDimLoad
Source§impl PartialOrd for MultiDimLoad
impl PartialOrd for MultiDimLoad
Source§impl Sub for MultiDimLoad
impl Sub for MultiDimLoad
Source§impl Sum for MultiDimLoad
impl Sum for MultiDimLoad
Source§fn sum<I: Iterator<Item = MultiDimLoad>>(iter: I) -> Self
fn sum<I: Iterator<Item = MultiDimLoad>>(iter: I) -> Self
Takes an iterator and generates
Self
from the elements by “summing up”
the items.impl Copy for MultiDimLoad
impl Eq for MultiDimLoad
impl LoadOps for MultiDimLoad
Auto Trait Implementations§
impl Freeze for MultiDimLoad
impl RefUnwindSafe for MultiDimLoad
impl Send for MultiDimLoad
impl Sync for MultiDimLoad
impl Unpin for MultiDimLoad
impl UnwindSafe for MultiDimLoad
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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