pub struct Options { /* private fields */ }
Expand description
Options which can be passed to Client::new
.
Implementations§
Source§impl Options
impl Options
Sourcepub fn secretfile(self, secretfile: Secretfile) -> Options
pub fn secretfile(self, secretfile: Secretfile) -> Options
Specify a Secretfile
for the Client
to use. This takes self
by value, so it consumes the Options
structure it is called on,
and returns a new one. Defaults to Secretfile::default()
.
Sourcepub fn allow_override(self, allow_override: bool) -> Options
pub fn allow_override(self, allow_override: bool) -> Options
Allow secrets in environment variables and local files to override
the ones specified in our Secretfile
. Defaults to true.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Options
impl RefUnwindSafe for Options
impl Send for Options
impl Sync for Options
impl Unpin for Options
impl UnwindSafe for Options
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more