pub struct LoadConfigCommandBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> LoadConfigCommandBuilder<S>
impl<S: State> LoadConfigCommandBuilder<S>
Sourcepub fn build(self) -> LoadConfigCommandwhere
S: IsComplete,
pub fn build(self) -> LoadConfigCommandwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn paths(self, value: Vec<String>) -> LoadConfigCommandBuilder<SetPaths<S>>where
S::Paths: IsUnset,
pub fn paths(self, value: Vec<String>) -> LoadConfigCommandBuilder<SetPaths<S>>where
S::Paths: IsUnset,
Required.
Sourcepub fn override_config(
self,
value: bool,
) -> LoadConfigCommandBuilder<SetOverrideConfig<S>>where
S::OverrideConfig: IsUnset,
pub fn override_config(
self,
value: bool,
) -> LoadConfigCommandBuilder<SetOverrideConfig<S>>where
S::OverrideConfig: IsUnset,
Sourcepub fn maybe_override_config(
self,
value: Option<bool>,
) -> LoadConfigCommandBuilder<SetOverrideConfig<S>>where
S::OverrideConfig: IsUnset,
pub fn maybe_override_config(
self,
value: Option<bool>,
) -> LoadConfigCommandBuilder<SetOverrideConfig<S>>where
S::OverrideConfig: IsUnset,
Sourcepub fn ignore_overrides(
self,
value: bool,
) -> LoadConfigCommandBuilder<SetIgnoreOverrides<S>>where
S::IgnoreOverrides: IsUnset,
pub fn ignore_overrides(
self,
value: bool,
) -> LoadConfigCommandBuilder<SetIgnoreOverrides<S>>where
S::IgnoreOverrides: IsUnset,
Sourcepub fn maybe_ignore_overrides(
self,
value: Option<bool>,
) -> LoadConfigCommandBuilder<SetIgnoreOverrides<S>>where
S::IgnoreOverrides: IsUnset,
pub fn maybe_ignore_overrides(
self,
value: Option<bool>,
) -> LoadConfigCommandBuilder<SetIgnoreOverrides<S>>where
S::IgnoreOverrides: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for LoadConfigCommandBuilder<S>
impl<S> RefUnwindSafe for LoadConfigCommandBuilder<S>
impl<S> Send for LoadConfigCommandBuilder<S>
impl<S> Sync for LoadConfigCommandBuilder<S>
impl<S> Unpin for LoadConfigCommandBuilder<S>
impl<S> UnwindSafe for LoadConfigCommandBuilder<S>
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