Enum opentelemetry::Array
source · pub enum Array {
Bool(Vec<bool>),
I64(Vec<i64>),
F64(Vec<f64>),
String(Vec<StringValue>),
}
Expand description
A Value::Array containing homogeneous values.
Variants§
Bool(Vec<bool>)
Array of bools
I64(Vec<i64>)
Array of integers
F64(Vec<f64>)
Array of floats
String(Vec<StringValue>)
Array of strings
Trait Implementations§
source§impl From<Vec<StringValue>> for Array
impl From<Vec<StringValue>> for Array
source§fn from(t: Vec<StringValue>) -> Self
fn from(t: Vec<StringValue>) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for Array
Auto Trait Implementations§
impl Freeze for Array
impl RefUnwindSafe for Array
impl Send for Array
impl Sync for Array
impl Unpin for Array
impl UnwindSafe for Array
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)