pub struct EnvironmentMeta {
pub pproxy_version: Option<String>,
pub eggress_version: String,
pub python_version: String,
pub os: String,
pub arch: String,
pub interpreter: String,
}Expand description
Environment metadata captured with each observation
Fields§
§pproxy_version: Option<String>§eggress_version: String§python_version: String§os: String§arch: String§interpreter: StringTrait Implementations§
Source§impl Clone for EnvironmentMeta
impl Clone for EnvironmentMeta
Source§fn clone(&self) -> EnvironmentMeta
fn clone(&self) -> EnvironmentMeta
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 EnvironmentMeta
impl Debug for EnvironmentMeta
Source§impl<'de> Deserialize<'de> for EnvironmentMeta
impl<'de> Deserialize<'de> for EnvironmentMeta
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 EnvironmentMeta
impl RefUnwindSafe for EnvironmentMeta
impl Send for EnvironmentMeta
impl Sync for EnvironmentMeta
impl Unpin for EnvironmentMeta
impl UnsafeUnpin for EnvironmentMeta
impl UnwindSafe for EnvironmentMeta
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