pub struct ListBuilder { /* private fields */ }
Expand description
Note: no support for sorting, folks can do that in rust if they really want it.
Implementations§
Source§impl ListBuilder
impl ListBuilder
pub fn depth(&mut self, levels: usize) -> &mut Self
pub fn recursive(&mut self) -> &mut Self
pub fn include_filesystems(&mut self) -> &mut Self
pub fn include_snapshots(&mut self) -> &mut Self
pub fn include_bookmarks(&mut self) -> &mut Self
pub fn include_volumes(&mut self) -> &mut Self
pub fn with_elements(&mut self, elements: &[&'static str]) -> &mut Self
pub fn with_dataset<T: Into<String>>(&mut self, dataset: T) -> &mut Self
Trait Implementations§
Source§impl Clone for ListBuilder
impl Clone for ListBuilder
Source§fn clone(&self) -> ListBuilder
fn clone(&self) -> ListBuilder
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 ListBuilder
impl Debug for ListBuilder
Source§impl Default for ListBuilder
impl Default for ListBuilder
Source§fn default() -> ListBuilder
fn default() -> ListBuilder
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListBuilder
impl PartialEq for ListBuilder
impl Eq for ListBuilder
impl StructuralPartialEq for ListBuilder
Auto Trait Implementations§
impl Freeze for ListBuilder
impl RefUnwindSafe for ListBuilder
impl Send for ListBuilder
impl Sync for ListBuilder
impl Unpin for ListBuilder
impl UnwindSafe for ListBuilder
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