pub struct ObjectArrayItem {
pub type_: String,
pub values: Vec<f64>,
}Expand description
Элемент ObAr (object array): тип точки + значения (зеркало { type, values }).
Fields§
§type_: String§values: Vec<f64>Trait Implementations§
Source§impl Clone for ObjectArrayItem
impl Clone for ObjectArrayItem
Source§fn clone(&self) -> ObjectArrayItem
fn clone(&self) -> ObjectArrayItem
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 ObjectArrayItem
impl Debug for ObjectArrayItem
Source§impl PartialEq for ObjectArrayItem
impl PartialEq for ObjectArrayItem
Source§fn eq(&self, other: &ObjectArrayItem) -> bool
fn eq(&self, other: &ObjectArrayItem) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ObjectArrayItem
Auto Trait Implementations§
impl Freeze for ObjectArrayItem
impl RefUnwindSafe for ObjectArrayItem
impl Send for ObjectArrayItem
impl Sync for ObjectArrayItem
impl Unpin for ObjectArrayItem
impl UnsafeUnpin for ObjectArrayItem
impl UnwindSafe for ObjectArrayItem
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