pub struct FileInputBuilder { /* private fields */ }Expand description
Builder for FileInput object.
Implementations§
Source§impl FileInputBuilder
impl FileInputBuilder
Sourcepub fn get_action_id(&self) -> Option<&String>
pub fn get_action_id(&self) -> Option<&String>
get action_id field value.
Sourcepub fn set_action_id(self, value: Option<impl Into<String>>) -> Self
pub fn set_action_id(self, value: Option<impl Into<String>>) -> Self
set action_id field value.
Sourcepub fn get_filetypes(&self) -> Option<&[FileType]>
pub fn get_filetypes(&self) -> Option<&[FileType]>
get filetypes field value.
Sourcepub fn set_filetypes(self, value: Option<impl Into<Vec<FileType>>>) -> Self
pub fn set_filetypes(self, value: Option<impl Into<Vec<FileType>>>) -> Self
set filetypes field value.
Sourcepub fn filetype(self, value: impl Into<FileType>) -> Self
pub fn filetype(self, value: impl Into<FileType>) -> Self
push list element to filetypes field.
Sourcepub fn get_max_files(&self) -> Option<i64>
pub fn get_max_files(&self) -> Option<i64>
get max_files field value.
Sourcepub fn set_max_files(self, value: Option<impl Into<i64>>) -> Self
pub fn set_max_files(self, value: Option<impl Into<i64>>) -> Self
set max_files field value.
Trait Implementations§
Source§impl Debug for FileInputBuilder
impl Debug for FileInputBuilder
Auto Trait Implementations§
impl Freeze for FileInputBuilder
impl RefUnwindSafe for FileInputBuilder
impl Send for FileInputBuilder
impl Sync for FileInputBuilder
impl Unpin for FileInputBuilder
impl UnsafeUnpin for FileInputBuilder
impl UnwindSafe for FileInputBuilder
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