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
sourceimpl<'a> Annotation<'a>
impl<'a> Annotation<'a>
Trait Implementations
sourceimpl<'a> Clone for Annotation<'a>
impl<'a> Clone for Annotation<'a>
sourcefn clone(&self) -> Annotation<'a>
fn clone(&self) -> Annotation<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more