pub struct NewProposalConflict {
pub conflict_id: String,
pub existing_fact_kind: String,
pub existing_fact_id: String,
pub severity: ProposalConflictSeverity,
pub reason: String,
}Expand description
New proposal conflict to persist with a proposal.
Fields§
§conflict_id: String§existing_fact_kind: String§existing_fact_id: String§severity: ProposalConflictSeverity§reason: StringTrait Implementations§
Source§impl Clone for NewProposalConflict
impl Clone for NewProposalConflict
Source§fn clone(&self) -> NewProposalConflict
fn clone(&self) -> NewProposalConflict
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 NewProposalConflict
impl Debug for NewProposalConflict
Source§impl PartialEq for NewProposalConflict
impl PartialEq for NewProposalConflict
Source§fn eq(&self, other: &NewProposalConflict) -> bool
fn eq(&self, other: &NewProposalConflict) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for NewProposalConflict
impl StructuralPartialEq for NewProposalConflict
Auto Trait Implementations§
impl Freeze for NewProposalConflict
impl RefUnwindSafe for NewProposalConflict
impl Send for NewProposalConflict
impl Sync for NewProposalConflict
impl Unpin for NewProposalConflict
impl UnsafeUnpin for NewProposalConflict
impl UnwindSafe for NewProposalConflict
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