pub struct CheckIssue {
pub level: CheckLevel,
pub group: String,
pub file: Option<String>,
pub message: String,
}Expand description
One validation finding from validate_sections.
Fields§
§level: CheckLevel§group: String§file: Option<String>§message: StringTrait Implementations§
Source§impl Clone for CheckIssue
impl Clone for CheckIssue
Source§fn clone(&self) -> CheckIssue
fn clone(&self) -> CheckIssue
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 moreSource§impl Debug for CheckIssue
impl Debug for CheckIssue
Auto Trait Implementations§
impl Freeze for CheckIssue
impl RefUnwindSafe for CheckIssue
impl Send for CheckIssue
impl Sync for CheckIssue
impl Unpin for CheckIssue
impl UnsafeUnpin for CheckIssue
impl UnwindSafe for CheckIssue
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