pub struct DoubleList {
pub values: Vec<f64>,
}Expand description
A list of 64-bit floating point values that can be used as a property value.
Fields§
§values: Vec<f64>Trait Implementations§
Source§impl Clone for DoubleList
impl Clone for DoubleList
Source§fn clone(&self) -> DoubleList
fn clone(&self) -> DoubleList
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 DoubleList
impl Debug for DoubleList
Source§impl<'de> Deserialize<'de> for DoubleList
impl<'de> Deserialize<'de> for DoubleList
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DoubleList
impl PartialEq for DoubleList
Source§impl Serialize for DoubleList
impl Serialize for DoubleList
impl StructuralPartialEq for DoubleList
Auto Trait Implementations§
impl Freeze for DoubleList
impl RefUnwindSafe for DoubleList
impl Send for DoubleList
impl Sync for DoubleList
impl Unpin for DoubleList
impl UnwindSafe for DoubleList
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