pub struct IntMeasureValue {
pub type_name: Option<String>,
pub value: i64,
}Expand description
select-of-named-integers (e.g. SELECT(u_direction_count, v_direction_count)):
Some(type_name) = typed member TYPE(2); None = bare integer. Integer-
valued so counts are not widened to reals.
Fields§
§type_name: Option<String>§value: i64Trait Implementations§
Source§impl Clone for IntMeasureValue
impl Clone for IntMeasureValue
Source§fn clone(&self) -> IntMeasureValue
fn clone(&self) -> IntMeasureValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IntMeasureValue
impl Debug for IntMeasureValue
Source§impl PartialEq for IntMeasureValue
impl PartialEq for IntMeasureValue
Source§fn eq(&self, other: &IntMeasureValue) -> bool
fn eq(&self, other: &IntMeasureValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IntMeasureValue
Auto Trait Implementations§
impl Freeze for IntMeasureValue
impl RefUnwindSafe for IntMeasureValue
impl Send for IntMeasureValue
impl Sync for IntMeasureValue
impl Unpin for IntMeasureValue
impl UnsafeUnpin for IntMeasureValue
impl UnwindSafe for IntMeasureValue
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