pub struct EnvironmentStore {
pub medium: Option<EnvironmentMedium>,
pub fingerprint: Option<ContextFingerprint>,
}Expand description
Store for environment sensing domain.
Fields§
§medium: Option<EnvironmentMedium>§fingerprint: Option<ContextFingerprint>Implementations§
Trait Implementations§
Source§impl Clone for EnvironmentStore
impl Clone for EnvironmentStore
Source§fn clone(&self) -> EnvironmentStore
fn clone(&self) -> EnvironmentStore
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 EnvironmentStore
impl Debug for EnvironmentStore
Source§impl Default for EnvironmentStore
impl Default for EnvironmentStore
Source§fn default() -> EnvironmentStore
fn default() -> EnvironmentStore
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EnvironmentStore
impl<'de> Deserialize<'de> for EnvironmentStore
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 EnvironmentStore
impl RefUnwindSafe for EnvironmentStore
impl Send for EnvironmentStore
impl Sync for EnvironmentStore
impl Unpin for EnvironmentStore
impl UnsafeUnpin for EnvironmentStore
impl UnwindSafe for EnvironmentStore
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