pub enum ReportSelection {
None,
All,
Some(Vec<String>),
}Expand description
Selection of nodes or links for reporting.
Variants§
Trait Implementations§
Source§impl Clone for ReportSelection
impl Clone for ReportSelection
Source§fn clone(&self) -> ReportSelection
fn clone(&self) -> ReportSelection
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 ReportSelection
impl Debug for ReportSelection
Source§impl Default for ReportSelection
impl Default for ReportSelection
Source§fn default() -> ReportSelection
fn default() -> ReportSelection
Returns the “default value” for a type. Read more
Source§impl PartialEq for ReportSelection
impl PartialEq for ReportSelection
Source§fn eq(&self, other: &ReportSelection) -> bool
fn eq(&self, other: &ReportSelection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReportSelection
Auto Trait Implementations§
impl Freeze for ReportSelection
impl RefUnwindSafe for ReportSelection
impl Send for ReportSelection
impl Sync for ReportSelection
impl Unpin for ReportSelection
impl UnsafeUnpin for ReportSelection
impl UnwindSafe for ReportSelection
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