pub enum ReportMode {
FullIr {
format: OutputFormat,
},
Query {
kind: String,
selector: Option<String>,
to: Option<String>,
limit: usize,
offset: usize,
format: OutputFormat,
},
}Expand description
How to render analyzed model facts.
Variants§
Trait Implementations§
Source§impl Clone for ReportMode
impl Clone for ReportMode
Source§fn clone(&self) -> ReportMode
fn clone(&self) -> ReportMode
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 moreAuto Trait Implementations§
impl Freeze for ReportMode
impl RefUnwindSafe for ReportMode
impl Send for ReportMode
impl Sync for ReportMode
impl Unpin for ReportMode
impl UnsafeUnpin for ReportMode
impl UnwindSafe for ReportMode
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