pub enum GraphFilter {
Ancestor(String),
Descendant(String),
Relative(String),
}
Expand description
Filters that can be applied when creating component graphs
Variants§
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 GraphFilter
impl Debug for GraphFilter
Source§impl FromStr for GraphFilter
impl FromStr for GraphFilter
Source§impl PartialEq for GraphFilter
impl PartialEq for GraphFilter
impl StructuralPartialEq for GraphFilter
Auto Trait Implementations§
impl Freeze for GraphFilter
impl RefUnwindSafe for GraphFilter
impl Send for GraphFilter
impl Sync for GraphFilter
impl Unpin for GraphFilter
impl UnwindSafe for GraphFilter
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