Struct wast::NameAnnotation
source · [−]pub struct NameAnnotation<'a> {
pub name: &'a str,
}
Expand description
An @name
annotation in source, currently of the form @name "foo"
Fields
name: &'a str
The name specified for the item
Trait Implementations
sourceimpl<'a> Clone for NameAnnotation<'a>
impl<'a> Clone for NameAnnotation<'a>
sourcefn clone(&self) -> NameAnnotation<'a>
fn clone(&self) -> NameAnnotation<'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
sourceimpl<'a> Debug for NameAnnotation<'a>
impl<'a> Debug for NameAnnotation<'a>
sourceimpl<'a> Parse<'a> for NameAnnotation<'a>
impl<'a> Parse<'a> for NameAnnotation<'a>
sourceimpl<'a> PartialEq<NameAnnotation<'a>> for NameAnnotation<'a>
impl<'a> PartialEq<NameAnnotation<'a>> for NameAnnotation<'a>
sourcefn eq(&self, other: &NameAnnotation<'a>) -> bool
fn eq(&self, other: &NameAnnotation<'a>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &NameAnnotation<'a>) -> bool
fn ne(&self, other: &NameAnnotation<'a>) -> bool
This method tests for !=
.
impl<'a> Copy for NameAnnotation<'a>
impl<'a> StructuralPartialEq for NameAnnotation<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for NameAnnotation<'a>
impl<'a> Send for NameAnnotation<'a>
impl<'a> Sync for NameAnnotation<'a>
impl<'a> Unpin for NameAnnotation<'a>
impl<'a> UnwindSafe for NameAnnotation<'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