pub struct CatalogerOptions {
pub other: Vec<String>,
pub limit: Option<usize>,
pub output: Option<String>,
}
Expand description
Fields§
§other: Vec<String>
Extended nonstandard cataloger options.
limit: Option<usize>
The maximum number of outputs.
output: Option<String>
The output format.
Implementations§
Source§impl CatalogerOptions
impl CatalogerOptions
Sourcepub fn builder() -> CatalogerOptionsBuilder
pub fn builder() -> CatalogerOptionsBuilder
Create an instance of CatalogerOptions
using the builder syntax
Trait Implementations§
Source§impl Clone for CatalogerOptions
impl Clone for CatalogerOptions
Source§fn clone(&self) -> CatalogerOptions
fn clone(&self) -> CatalogerOptions
Returns a duplicate 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 CatalogerOptions
impl Debug for CatalogerOptions
Source§impl Default for CatalogerOptions
impl Default for CatalogerOptions
Source§fn default() -> CatalogerOptions
fn default() -> CatalogerOptions
Returns the “default value” for a type. Read more
Source§impl Hash for CatalogerOptions
impl Hash for CatalogerOptions
Source§impl Ord for CatalogerOptions
impl Ord for CatalogerOptions
Source§fn cmp(&self, other: &CatalogerOptions) -> Ordering
fn cmp(&self, other: &CatalogerOptions) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CatalogerOptions
impl PartialEq for CatalogerOptions
Source§impl PartialOrd for CatalogerOptions
impl PartialOrd for CatalogerOptions
impl Eq for CatalogerOptions
impl StructuralPartialEq for CatalogerOptions
Auto Trait Implementations§
impl Freeze for CatalogerOptions
impl RefUnwindSafe for CatalogerOptions
impl Send for CatalogerOptions
impl Sync for CatalogerOptions
impl Unpin for CatalogerOptions
impl UnwindSafe for CatalogerOptions
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