#[non_exhaustive]pub struct FileConfigurationBuilder { /* private fields */ }
Expand description
A builder for FileConfiguration
.
Implementations§
source§impl FileConfigurationBuilder
impl FileConfigurationBuilder
sourcepub fn folders(self, input: impl Into<String>) -> Self
pub fn folders(self, input: impl Into<String>) -> Self
Appends an item to folders
.
To override the contents of this collection use set_folders
.
Identifiers for the source folders to pull all files from recursively.
sourcepub fn set_folders(self, input: Option<Vec<String>>) -> Self
pub fn set_folders(self, input: Option<Vec<String>>) -> Self
Identifiers for the source folders to pull all files from recursively.
sourcepub fn get_folders(&self) -> &Option<Vec<String>>
pub fn get_folders(&self) -> &Option<Vec<String>>
Identifiers for the source folders to pull all files from recursively.
sourcepub fn filters(self, k: impl Into<String>, v: Vec<String>) -> Self
pub fn filters(self, k: impl Into<String>, v: Vec<String>) -> Self
Adds a key-value pair to filters
.
To override the contents of this collection use set_filters
.
Restrictions for what files should be pulled from the source.
sourcepub fn set_filters(self, input: Option<HashMap<String, Vec<String>>>) -> Self
pub fn set_filters(self, input: Option<HashMap<String, Vec<String>>>) -> Self
Restrictions for what files should be pulled from the source.
sourcepub fn get_filters(&self) -> &Option<HashMap<String, Vec<String>>>
pub fn get_filters(&self) -> &Option<HashMap<String, Vec<String>>>
Restrictions for what files should be pulled from the source.
sourcepub fn build(self) -> Result<FileConfiguration, BuildError>
pub fn build(self) -> Result<FileConfiguration, BuildError>
Consumes the builder and constructs a FileConfiguration
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for FileConfigurationBuilder
impl Clone for FileConfigurationBuilder
source§fn clone(&self) -> FileConfigurationBuilder
fn clone(&self) -> FileConfigurationBuilder
Returns a copy 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 FileConfigurationBuilder
impl Debug for FileConfigurationBuilder
source§impl Default for FileConfigurationBuilder
impl Default for FileConfigurationBuilder
source§fn default() -> FileConfigurationBuilder
fn default() -> FileConfigurationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for FileConfigurationBuilder
impl PartialEq for FileConfigurationBuilder
impl StructuralPartialEq for FileConfigurationBuilder
Auto Trait Implementations§
impl Freeze for FileConfigurationBuilder
impl RefUnwindSafe for FileConfigurationBuilder
impl Send for FileConfigurationBuilder
impl Sync for FileConfigurationBuilder
impl Unpin for FileConfigurationBuilder
impl UnwindSafe for FileConfigurationBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moreCreates a shared type from an unshared type.