pub enum AnnotationType {
Error,
Warning,
Info,
Note,
Help,
}👎Deprecated since 0.16.0: Use
ReportType or FootnoteType insteadExpand description
Type of annotation.
Variants§
Error
👎Deprecated since 0.16.0: Use
ReportType or FootnoteType insteadWarning
👎Deprecated since 0.16.0: Use
ReportType or FootnoteType insteadInfo
👎Deprecated since 0.16.0: Use
ReportType or FootnoteType insteadNote
👎Deprecated since 0.16.0: Use
ReportType or FootnoteType insteadHelp
👎Deprecated since 0.16.0: Use
ReportType or FootnoteType insteadTrait Implementations§
Source§impl Clone for AnnotationType
impl Clone for AnnotationType
Source§fn clone(&self) -> AnnotationType
fn clone(&self) -> AnnotationType
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 AnnotationType
impl Debug for AnnotationType
Source§impl From<AnnotationType> for AnnotationKind
Converts yash_syntax::source::pretty::AnnotationType into
annotate_snippets::AnnotationKind.
impl From<AnnotationType> for AnnotationKind
Converts yash_syntax::source::pretty::AnnotationType into
annotate_snippets::AnnotationKind.
This implementation is only available when the yash_syntax crate is
built with the annotate-snippets feature enabled.
Source§fn from(type: AnnotationType) -> Self
fn from(type: AnnotationType) -> Self
Converts to this type from the input type.
Source§impl<'a> From<AnnotationType> for Level<'a>
Converts yash_syntax::source::pretty::AnnotationType into
annotate_snippets::Level.
impl<'a> From<AnnotationType> for Level<'a>
Converts yash_syntax::source::pretty::AnnotationType into
annotate_snippets::Level.
This implementation is only available when the yash_syntax crate is
built with the annotate-snippets feature enabled.
Source§fn from(type: AnnotationType) -> Self
fn from(type: AnnotationType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AnnotationType
impl PartialEq for AnnotationType
impl Copy for AnnotationType
impl Eq for AnnotationType
impl StructuralPartialEq for AnnotationType
Auto Trait Implementations§
impl Freeze for AnnotationType
impl RefUnwindSafe for AnnotationType
impl Send for AnnotationType
impl Sync for AnnotationType
impl Unpin for AnnotationType
impl UnwindSafe for AnnotationType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more