pub struct MarkdownSemanticIssue {
pub issue_type: LintIssueType,
pub line: usize,
pub message: String,
}Expand description
Semantic lint issue for markdown/text content.
Fields§
§issue_type: LintIssueTypeType of lint issue
line: usize1-based line number where the issue was detected
message: StringHuman-readable message
Trait Implementations§
Source§impl Clone for MarkdownSemanticIssue
impl Clone for MarkdownSemanticIssue
Source§fn clone(&self) -> MarkdownSemanticIssue
fn clone(&self) -> MarkdownSemanticIssue
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 MarkdownSemanticIssue
impl Debug for MarkdownSemanticIssue
Source§impl<'de> Deserialize<'de> for MarkdownSemanticIssue
impl<'de> Deserialize<'de> for MarkdownSemanticIssue
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 MarkdownSemanticIssue
impl PartialEq for MarkdownSemanticIssue
Source§impl Serialize for MarkdownSemanticIssue
impl Serialize for MarkdownSemanticIssue
impl StructuralPartialEq for MarkdownSemanticIssue
Auto Trait Implementations§
impl Freeze for MarkdownSemanticIssue
impl RefUnwindSafe for MarkdownSemanticIssue
impl Send for MarkdownSemanticIssue
impl Sync for MarkdownSemanticIssue
impl Unpin for MarkdownSemanticIssue
impl UnwindSafe for MarkdownSemanticIssue
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