pub struct RuleListReport {
pub total: usize,
pub rules: Vec<Rule>,
}Expand description
The report list renders: every matching rule, in server order.
Fields§
§total: usize§rules: Vec<Rule>Trait Implementations§
Source§impl Clone for RuleListReport
impl Clone for RuleListReport
Source§fn clone(&self) -> RuleListReport
fn clone(&self) -> RuleListReport
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 RuleListReport
impl Debug for RuleListReport
Source§impl PartialEq for RuleListReport
impl PartialEq for RuleListReport
Source§impl Serialize for RuleListReport
impl Serialize for RuleListReport
impl StructuralPartialEq for RuleListReport
Auto Trait Implementations§
impl Freeze for RuleListReport
impl RefUnwindSafe for RuleListReport
impl Send for RuleListReport
impl Sync for RuleListReport
impl Unpin for RuleListReport
impl UnsafeUnpin for RuleListReport
impl UnwindSafe for RuleListReport
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