pub enum ListFilter {
Running,
Stopped,
Ancestor(String),
Descendant(String),
Relative(String),
}
Expand description
Filters that can be applied when listing components
Variants§
Running
Stopped
Ancestor(String)
Filters components that are an ancestor of the component with the given name. Includes the named component.
Descendant(String)
Filters components that are a descendant of the component with the given name. Includes the named component.
Relative(String)
Filters components that are a relative (either an ancestor or a descendant) of the component with the given name. Includes the named component.
Trait Implementations§
Source§impl Debug for ListFilter
impl Debug for ListFilter
Source§impl FromStr for ListFilter
impl FromStr for ListFilter
Source§impl PartialEq for ListFilter
impl PartialEq for ListFilter
impl StructuralPartialEq for ListFilter
Auto Trait Implementations§
impl Freeze for ListFilter
impl RefUnwindSafe for ListFilter
impl Send for ListFilter
impl Sync for ListFilter
impl Unpin for ListFilter
impl UnwindSafe for ListFilter
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