Struct parity_wasm::elements::FunctionNameSubsection
source · [−]pub struct FunctionNameSubsection { /* private fields */ }
Expand description
The names of the functions in this module.
Implementations
sourceimpl FunctionNameSubsection
impl FunctionNameSubsection
sourcepub fn deserialize<R: Read>(
module: &Module,
rdr: &mut R
) -> Result<FunctionNameSubsection, Error>
pub fn deserialize<R: Read>(
module: &Module,
rdr: &mut R
) -> Result<FunctionNameSubsection, Error>
Deserialize names, making sure that all names correspond to functions.
Trait Implementations
sourceimpl Clone for FunctionNameSubsection
impl Clone for FunctionNameSubsection
sourcefn clone(&self) -> FunctionNameSubsection
fn clone(&self) -> FunctionNameSubsection
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 Debug for FunctionNameSubsection
impl Debug for FunctionNameSubsection
sourceimpl Default for FunctionNameSubsection
impl Default for FunctionNameSubsection
sourcefn default() -> FunctionNameSubsection
fn default() -> FunctionNameSubsection
Returns the “default value” for a type. Read more
sourceimpl PartialEq<FunctionNameSubsection> for FunctionNameSubsection
impl PartialEq<FunctionNameSubsection> for FunctionNameSubsection
sourcefn eq(&self, other: &FunctionNameSubsection) -> bool
fn eq(&self, other: &FunctionNameSubsection) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &FunctionNameSubsection) -> bool
fn ne(&self, other: &FunctionNameSubsection) -> bool
This method tests for !=
.
sourceimpl Serialize for FunctionNameSubsection
impl Serialize for FunctionNameSubsection
impl StructuralPartialEq for FunctionNameSubsection
Auto Trait Implementations
impl RefUnwindSafe for FunctionNameSubsection
impl Send for FunctionNameSubsection
impl Sync for FunctionNameSubsection
impl Unpin for FunctionNameSubsection
impl UnwindSafe for FunctionNameSubsection
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