pub enum DotenvOptions<'a> {
Enabled,
Disabled,
Path(&'a Path),
}Variants§
Trait Implementations§
Source§impl<'a> Clone for DotenvOptions<'a>
impl<'a> Clone for DotenvOptions<'a>
Source§fn clone(&self) -> DotenvOptions<'a>
fn clone(&self) -> DotenvOptions<'a>
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<'a> Debug for DotenvOptions<'a>
impl<'a> Debug for DotenvOptions<'a>
Source§impl<'a> Default for DotenvOptions<'a>
impl<'a> Default for DotenvOptions<'a>
Source§fn default() -> DotenvOptions<'a>
fn default() -> DotenvOptions<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> PartialEq for DotenvOptions<'a>
impl<'a> PartialEq for DotenvOptions<'a>
Source§fn eq(&self, other: &DotenvOptions<'a>) -> bool
fn eq(&self, other: &DotenvOptions<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> Copy for DotenvOptions<'a>
impl<'a> Eq for DotenvOptions<'a>
impl<'a> StructuralPartialEq for DotenvOptions<'a>
Auto Trait Implementations§
impl<'a> Freeze for DotenvOptions<'a>
impl<'a> RefUnwindSafe for DotenvOptions<'a>
impl<'a> Send for DotenvOptions<'a>
impl<'a> Sync for DotenvOptions<'a>
impl<'a> Unpin for DotenvOptions<'a>
impl<'a> UnsafeUnpin for DotenvOptions<'a>
impl<'a> UnwindSafe for DotenvOptions<'a>
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