pub struct EnvVariable {
pub name: String,
pub value: String,
}
Fields§
§name: String
§value: String
Trait Implementations§
Source§impl Clone for EnvVariable
impl Clone for EnvVariable
Source§fn clone(&self) -> EnvVariable
fn clone(&self) -> EnvVariable
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 EnvVariable
impl Debug for EnvVariable
Source§impl PartialEq for EnvVariable
impl PartialEq for EnvVariable
Source§impl Serialize for EnvVariable
impl Serialize for EnvVariable
impl StructuralPartialEq for EnvVariable
Auto Trait Implementations§
impl Freeze for EnvVariable
impl RefUnwindSafe for EnvVariable
impl Send for EnvVariable
impl Sync for EnvVariable
impl Unpin for EnvVariable
impl UnwindSafe for EnvVariable
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