pub enum FieldArray {
}Variants§
Bool(Vec<bool>)
I8(Vec<i8>)
I16(Vec<i16>)
I32(Vec<i32>)
I64(Vec<i64>)
U8(Vec<u8>)
U16(Vec<u16>)
U32(Vec<u32>)
U64(Vec<u64>)
F32(Vec<f32>)
F64(Vec<f64>)
String(Vec<String>)
Bytes(Vec<Vec<u8>>)
Implementations§
Trait Implementations§
Source§impl Clone for FieldArray
impl Clone for FieldArray
Source§fn clone(&self) -> FieldArray
fn clone(&self) -> FieldArray
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 FieldArray
impl Debug for FieldArray
Source§impl<'de> Deserialize<'de> for FieldArray
impl<'de> Deserialize<'de> for FieldArray
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
Auto Trait Implementations§
impl Freeze for FieldArray
impl RefUnwindSafe for FieldArray
impl Send for FieldArray
impl Sync for FieldArray
impl Unpin for FieldArray
impl UnwindSafe for FieldArray
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