pub struct CatalogerOptions {
pub other: Vec<String>,
pub sort: Option<SortKeys>,
pub offset: Option<usize>,
pub limit: Option<usize>,
pub output: Option<String>,
}Expand description
Fields§
§other: Vec<String>Extended nonstandard cataloger options.
sort: Option<SortKeys>Sort resources by the specified keys. (Prefix a key with - for descending order.)
offset: Option<usize>The index offset of the first output.
limit: Option<usize>The maximum count 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 (const: unstable) · 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
impl Eq for CatalogerOptions
Source§impl Hash for CatalogerOptions
impl Hash for CatalogerOptions
Source§impl PartialEq for CatalogerOptions
impl PartialEq 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 UnsafeUnpin 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