#[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 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 build(self) -> FileConfiguration
pub fn build(self) -> FileConfiguration
Consumes the builder and constructs a FileConfiguration
.
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<FileConfigurationBuilder> for FileConfigurationBuilder
impl PartialEq<FileConfigurationBuilder> 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 ==
.