Struct yash_syntax::source::pretty::Annotation
source · [−]pub struct Annotation<'a> {
pub type: AnnotationType,
pub label: Cow<'a, str>,
pub location: &'a Location,
pub code: Rc<dyn Deref<Target = str> + 'a>,
}
Expand description
Source code fragment annotated with a label.
Annotations are part of an entire Message
.
Fields
type: AnnotationType
Type of annotation.
label: Cow<'a, str>
String that describes the annotated part of the source code.
location: &'a Location
Position of the annotated fragment in the source code.
code: Rc<dyn Deref<Target = str> + 'a>
Annotated 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
Trait Implementations
Auto Trait Implementations
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
Mutably borrows from an owned value. Read more