Enum opentelemetry::Array
source · [−]pub enum Array {
Bool(Vec<bool, Global>),
I64(Vec<i64, Global>),
F64(Vec<f64, Global>),
String(Vec<StringValue, Global>),
}
Expand description
A Value::Array containing homogeneous values.
Variants
Bool(Vec<bool, Global>)
Array of bools
I64(Vec<i64, Global>)
Array of integers
F64(Vec<f64, Global>)
Array of floats
String(Vec<StringValue, Global>)
Array of strings
Trait Implementations
sourceimpl PartialEq<Array> for Array
impl PartialEq<Array> for Array
impl StructuralPartialEq for Array
Auto Trait Implementations
impl RefUnwindSafe for Array
impl Send for Array
impl Sync for Array
impl Unpin for Array
impl UnwindSafe for Array
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more