pub enum Hash {
Str(String, String),
Vec(String, Vec<String>),
Placeholder,
}
Expand description
This enum is mainly A key-value pair
String
and Vec<String>
See docs of struct Env
of this package for learn more
Here’s The enum looks like
§Example
pub enum Hash {
Str(String, String),
Vec(String, Vec<String>),
Placeholder
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Hash
impl RefUnwindSafe for Hash
impl Send for Hash
impl Sync for Hash
impl Unpin for Hash
impl UnwindSafe for Hash
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