pub struct EvolutionReport {
pub schema: String,
pub verdict: EvolutionVerdict,
pub violations: Vec<EvolutionViolation>,
}Fields§
§schema: String§verdict: EvolutionVerdict§violations: Vec<EvolutionViolation>Trait Implementations§
Source§impl Clone for EvolutionReport
impl Clone for EvolutionReport
Source§fn clone(&self) -> EvolutionReport
fn clone(&self) -> EvolutionReport
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 EvolutionReport
impl Debug for EvolutionReport
Source§impl<'de> Deserialize<'de> for EvolutionReport
impl<'de> Deserialize<'de> for EvolutionReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for EvolutionReport
Source§impl PartialEq for EvolutionReport
impl PartialEq for EvolutionReport
Source§impl Serialize for EvolutionReport
impl Serialize for EvolutionReport
impl StructuralPartialEq for EvolutionReport
Auto Trait Implementations§
impl Freeze for EvolutionReport
impl RefUnwindSafe for EvolutionReport
impl Send for EvolutionReport
impl Sync for EvolutionReport
impl Unpin for EvolutionReport
impl UnsafeUnpin for EvolutionReport
impl UnwindSafe for EvolutionReport
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