pub struct ArrayValue {
pub array_values: Option<Vec<ArrayValue>>,
pub boolean_values: Option<Vec<bool>>,
pub double_values: Option<Vec<f64>>,
pub long_values: Option<Vec<i64>>,
pub string_values: Option<Vec<String>>,
}Expand description
Contains an array.
Fields§
§array_values: Option<Vec<ArrayValue>>An array of arrays.
boolean_values: Option<Vec<bool>>An array of Boolean values.
double_values: Option<Vec<f64>>An array of integers.
long_values: Option<Vec<i64>>An array of floating point numbers.
string_values: Option<Vec<String>>An array of strings.
Trait Implementations§
Source§impl Clone for ArrayValue
impl Clone for ArrayValue
Source§fn clone(&self) -> ArrayValue
fn clone(&self) -> ArrayValue
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 ArrayValue
impl Debug for ArrayValue
Source§impl Default for ArrayValue
impl Default for ArrayValue
Source§fn default() -> ArrayValue
fn default() -> ArrayValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ArrayValue
impl<'de> Deserialize<'de> for ArrayValue
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 ArrayValue
impl PartialEq for ArrayValue
Source§impl Serialize for ArrayValue
impl Serialize for ArrayValue
impl StructuralPartialEq for ArrayValue
Auto Trait Implementations§
impl Freeze for ArrayValue
impl RefUnwindSafe for ArrayValue
impl Send for ArrayValue
impl Sync for ArrayValue
impl Unpin for ArrayValue
impl UnwindSafe for ArrayValue
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