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§
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 copy 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> !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