pub struct IntegerVec(pub Vec<i64>);Expand description
A vector of integer values.
Tuple Fields§
§0: Vec<i64>Implementations§
Trait Implementations§
Source§impl Add for IntegerVec
impl Add for IntegerVec
Source§type Output = IntegerVec
type Output = IntegerVec
The resulting type after applying the
+ operator.Source§fn add(self, other: IntegerVec) -> IntegerVec
fn add(self, other: IntegerVec) -> IntegerVec
Performs the
+ operation. Read moreSource§impl Clone for IntegerVec
impl Clone for IntegerVec
Source§fn clone(&self) -> IntegerVec
fn clone(&self) -> IntegerVec
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 DataTypeOps for IntegerVec
impl DataTypeOps for IntegerVec
Source§impl Debug for IntegerVec
impl Debug for IntegerVec
Source§impl Div<f32> for IntegerVec
impl Div<f32> for IntegerVec
Source§type Output = IntegerVec
type Output = IntegerVec
The resulting type after applying the
/ operator.Source§impl Div<f64> for IntegerVec
impl Div<f64> for IntegerVec
Source§type Output = IntegerVec
type Output = IntegerVec
The resulting type after applying the
/ operator.Source§impl Hash for IntegerVec
impl Hash for IntegerVec
Source§impl Mul<f32> for IntegerVec
impl Mul<f32> for IntegerVec
Source§type Output = IntegerVec
type Output = IntegerVec
The resulting type after applying the
* operator.Source§impl Mul<f64> for IntegerVec
impl Mul<f64> for IntegerVec
Source§type Output = IntegerVec
type Output = IntegerVec
The resulting type after applying the
* operator.Source§impl PartialEq for IntegerVec
impl PartialEq for IntegerVec
Source§impl Sub for IntegerVec
impl Sub for IntegerVec
Source§type Output = IntegerVec
type Output = IntegerVec
The resulting type after applying the
- operator.Source§fn sub(self, other: IntegerVec) -> IntegerVec
fn sub(self, other: IntegerVec) -> IntegerVec
Performs the
- operation. Read moreSource§impl TryFrom<&Value> for IntegerVec
impl TryFrom<&Value> for IntegerVec
Source§impl TryFrom<Value> for IntegerVec
impl TryFrom<Value> for IntegerVec
impl Eq for IntegerVec
impl StructuralPartialEq for IntegerVec
Auto Trait Implementations§
impl Freeze for IntegerVec
impl RefUnwindSafe for IntegerVec
impl Send for IntegerVec
impl Sync for IntegerVec
impl Unpin for IntegerVec
impl UnsafeUnpin for IntegerVec
impl UnwindSafe for IntegerVec
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