pub struct OtlpArrayValue {
pub values: Vec<OtlpAnyValue>,
}Expand description
Wraps a slice of OTLP values.
Fields§
§values: Vec<OtlpAnyValue>Element values.
Trait Implementations§
Source§impl Clone for OtlpArrayValue
impl Clone for OtlpArrayValue
Source§fn clone(&self) -> OtlpArrayValue
fn clone(&self) -> OtlpArrayValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OtlpArrayValue
impl Debug for OtlpArrayValue
Source§impl Default for OtlpArrayValue
impl Default for OtlpArrayValue
Source§fn default() -> OtlpArrayValue
fn default() -> OtlpArrayValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OtlpArrayValue
impl<'de> Deserialize<'de> for OtlpArrayValue
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 OtlpArrayValue
impl PartialEq for OtlpArrayValue
Source§impl Serialize for OtlpArrayValue
impl Serialize for OtlpArrayValue
impl StructuralPartialEq for OtlpArrayValue
Auto Trait Implementations§
impl Freeze for OtlpArrayValue
impl RefUnwindSafe for OtlpArrayValue
impl Send for OtlpArrayValue
impl Sync for OtlpArrayValue
impl Unpin for OtlpArrayValue
impl UnsafeUnpin for OtlpArrayValue
impl UnwindSafe for OtlpArrayValue
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