pub struct NormalizeReport {
pub source: String,
pub source_kind: String,
pub dry_run: bool,
pub refused: bool,
pub refusal_reason: Option<String>,
pub summary: NormalizeSummary,
pub changes: Vec<NormalizeChange>,
}Fields§
§source: String§source_kind: String§dry_run: bool§refused: bool§refusal_reason: Option<String>§summary: NormalizeSummary§changes: Vec<NormalizeChange>Trait Implementations§
Source§impl Clone for NormalizeReport
impl Clone for NormalizeReport
Source§fn clone(&self) -> NormalizeReport
fn clone(&self) -> NormalizeReport
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 NormalizeReport
impl Debug for NormalizeReport
Source§impl<'de> Deserialize<'de> for NormalizeReport
impl<'de> Deserialize<'de> for NormalizeReport
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
Source§impl PartialEq for NormalizeReport
impl PartialEq for NormalizeReport
Source§fn eq(&self, other: &NormalizeReport) -> bool
fn eq(&self, other: &NormalizeReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NormalizeReport
impl Serialize for NormalizeReport
impl StructuralPartialEq for NormalizeReport
Auto Trait Implementations§
impl Freeze for NormalizeReport
impl RefUnwindSafe for NormalizeReport
impl Send for NormalizeReport
impl Sync for NormalizeReport
impl Unpin for NormalizeReport
impl UnsafeUnpin for NormalizeReport
impl UnwindSafe for NormalizeReport
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