pub enum AttributeArray {
Bool(Vec<bool>),
I64(Vec<i64>),
F64(Vec<f64>),
String(Vec<String>),
}Available on crate feature
export-azure only.Expand description
An array of homogeneous attribute values.
Variants§
Bool(Vec<bool>)
An array of boolean values.
I64(Vec<i64>)
An array of 64-bit signed integers.
F64(Vec<f64>)
An array of 64bit floating point values.
String(Vec<String>)
An array of strings.
Trait Implementations§
Source§impl Clone for AttributeArray
impl Clone for AttributeArray
Source§fn clone(&self) -> AttributeArray
fn clone(&self) -> AttributeArray
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 AttributeArray
impl Debug for AttributeArray
Source§impl PartialEq for AttributeArray
impl PartialEq for AttributeArray
impl StructuralPartialEq for AttributeArray
Auto Trait Implementations§
impl Freeze for AttributeArray
impl RefUnwindSafe for AttributeArray
impl Send for AttributeArray
impl Sync for AttributeArray
impl Unpin for AttributeArray
impl UnsafeUnpin for AttributeArray
impl UnwindSafe for AttributeArray
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