pub struct SelectionBranch {
pub name: String,
pub matched: bool,
pub detection: DetectionTrace,
}Expand description
One selection inside a quantified selector trace.
Fields§
§name: String§matched: bool§detection: DetectionTraceTrait Implementations§
Source§impl Clone for SelectionBranch
impl Clone for SelectionBranch
Source§fn clone(&self) -> SelectionBranch
fn clone(&self) -> SelectionBranch
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 SelectionBranch
impl Debug for SelectionBranch
Auto Trait Implementations§
impl Freeze for SelectionBranch
impl RefUnwindSafe for SelectionBranch
impl Send for SelectionBranch
impl Sync for SelectionBranch
impl Unpin for SelectionBranch
impl UnsafeUnpin for SelectionBranch
impl UnwindSafe for SelectionBranch
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