pub struct RuleReview {
pub rule: Rule,
pub promotion_metadata: PromotionMetadata,
pub conflicts: Vec<Rule>,
pub version_changes: Option<VersionChanges>,
}Expand description
Information about a rule for review
Fields§
§rule: RuleThe rule being reviewed
promotion_metadata: PromotionMetadataMetadata about the promotion
conflicts: Vec<Rule>Conflicts detected with existing global rules
version_changes: Option<VersionChanges>Comparison with previous version
Trait Implementations§
Source§impl Clone for RuleReview
impl Clone for RuleReview
Source§fn clone(&self) -> RuleReview
fn clone(&self) -> RuleReview
Returns a duplicate of the value. Read more
1.0.0 · 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 RuleReview
impl RefUnwindSafe for RuleReview
impl Send for RuleReview
impl Sync for RuleReview
impl Unpin for RuleReview
impl UnwindSafe for RuleReview
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