Struct wast::InlineImport
source · [−]Expand description
A listing of a inline (import "foo")
statement.
Note that when parsing this type it is somewhat unconventional that it
parses its own surrounding parentheses. This is typically an optional type,
so it’s so far been a bit nicer to have the optionality handled through
Peek
rather than Option<T>
.
Fields
module: &'a str
field: Option<&'a str>
Trait Implementations
sourceimpl<'a> Clone for InlineImport<'a>
impl<'a> Clone for InlineImport<'a>
sourcefn clone(&self) -> InlineImport<'a>
fn clone(&self) -> InlineImport<'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 InlineImport<'a>
impl<'a> Debug for InlineImport<'a>
sourceimpl<'a> Parse<'a> for InlineImport<'a>
impl<'a> Parse<'a> for InlineImport<'a>
sourceimpl Peek for InlineImport<'_>
impl Peek for InlineImport<'_>
impl<'a> Copy for InlineImport<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for InlineImport<'a>
impl<'a> Send for InlineImport<'a>
impl<'a> Sync for InlineImport<'a>
impl<'a> Unpin for InlineImport<'a>
impl<'a> UnwindSafe for InlineImport<'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