pub struct Annotation<'a> {
pub type: AnnotationType,
pub label: Cow<'a, str>,
pub location: &'a Location,
pub code: Rc<dyn Deref<Target = str> + 'a>,
}👎Deprecated since 0.16.0: Use
Snippet and Span insteadExpand description
Source code fragment annotated with a label
Annotations are part of an entire Message.
Fields§
§type: AnnotationType👎Deprecated since 0.16.0: Use
Snippet and Span insteadType of annotation
label: Cow<'a, str>👎Deprecated since 0.16.0: Use
Snippet and Span insteadString that describes the annotated part of the source code
location: &'a Location👎Deprecated since 0.16.0: Use
Snippet and Span insteadPosition of the annotated fragment in the source code
code: Rc<dyn Deref<Target = str> + 'a>👎Deprecated since 0.16.0: Use
Snippet and Span insteadAnnotated code string
This value provides an access to the string held in
self.location.code.value, which can only be accessed by a Ref.
Implementations§
Source§impl<'a> Annotation<'a>
impl<'a> Annotation<'a>
Trait Implementations§
Source§impl<'a> Clone for Annotation<'a>
impl<'a> Clone for Annotation<'a>
Source§fn clone(&self) -> Annotation<'a>
fn clone(&self) -> Annotation<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for Annotation<'a>
impl<'a> !RefUnwindSafe for Annotation<'a>
impl<'a> !Send for Annotation<'a>
impl<'a> !Sync for Annotation<'a>
impl<'a> Unpin for Annotation<'a>
impl<'a> !UnwindSafe for Annotation<'a>
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