#[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
source§fn eq(&self, other: &FileConfigurationBuilder) -> bool
fn eq(&self, other: &FileConfigurationBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FileConfigurationBuilder
Auto Trait Implementations§
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> 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>
Creates a shared type from an unshared type.