pub struct DefinitionDefectView {
pub severity: String,
pub locus: String,
pub defect: String,
pub blocking: bool,
}Expand description
One defect found in a definition draft.
Fields§
§severity: Stringerror or warning.
locus: StringWhere, in the author’s terms: “state X”, “guard Y”, …
defect: StringWhat is wrong, in a sentence.
blocking: boolWhether this alone prevents publication.
Trait Implementations§
Source§impl Clone for DefinitionDefectView
impl Clone for DefinitionDefectView
Source§fn clone(&self) -> DefinitionDefectView
fn clone(&self) -> DefinitionDefectView
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 DefinitionDefectView
impl Debug for DefinitionDefectView
Source§impl<'de> Deserialize<'de> for DefinitionDefectView
impl<'de> Deserialize<'de> for DefinitionDefectView
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 DefinitionDefectView
Source§impl PartialEq for DefinitionDefectView
impl PartialEq for DefinitionDefectView
Source§impl Serialize for DefinitionDefectView
impl Serialize for DefinitionDefectView
impl StructuralPartialEq for DefinitionDefectView
Auto Trait Implementations§
impl Freeze for DefinitionDefectView
impl RefUnwindSafe for DefinitionDefectView
impl Send for DefinitionDefectView
impl Sync for DefinitionDefectView
impl Unpin for DefinitionDefectView
impl UnsafeUnpin for DefinitionDefectView
impl UnwindSafe for DefinitionDefectView
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