pub struct EnvVarValue { /* private fields */ }Expand description
An owned environment variable value.
Implementations§
Source§impl EnvVarValue
impl EnvVarValue
Trait Implementations§
Source§impl AsRef<str> for EnvVarValue
impl AsRef<str> for EnvVarValue
Source§impl Clone for EnvVarValue
impl Clone for EnvVarValue
Source§fn clone(&self) -> EnvVarValue
fn clone(&self) -> EnvVarValue
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 EnvVarValue
impl Debug for EnvVarValue
Source§impl Default for EnvVarValue
impl Default for EnvVarValue
Source§fn default() -> EnvVarValue
fn default() -> EnvVarValue
Returns the “default value” for a type. Read more
Source§impl Display for EnvVarValue
impl Display for EnvVarValue
Source§impl From<&str> for EnvVarValue
impl From<&str> for EnvVarValue
Source§fn from(value: &str) -> EnvVarValue
fn from(value: &str) -> EnvVarValue
Converts to this type from the input type.
Source§impl From<String> for EnvVarValue
impl From<String> for EnvVarValue
Source§fn from(value: String) -> EnvVarValue
fn from(value: String) -> EnvVarValue
Converts to this type from the input type.
Source§impl Hash for EnvVarValue
impl Hash for EnvVarValue
Source§impl PartialEq for EnvVarValue
impl PartialEq for EnvVarValue
Source§fn eq(&self, other: &EnvVarValue) -> bool
fn eq(&self, other: &EnvVarValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for EnvVarValue
impl StructuralPartialEq for EnvVarValue
Auto Trait Implementations§
impl Freeze for EnvVarValue
impl RefUnwindSafe for EnvVarValue
impl Send for EnvVarValue
impl Sync for EnvVarValue
impl Unpin for EnvVarValue
impl UnsafeUnpin for EnvVarValue
impl UnwindSafe for EnvVarValue
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