Struct move_binary_format::views::FunctionDefinitionView
source · [−]pub struct FunctionDefinitionView<'a, T> { /* private fields */ }
Implementations
sourceimpl<'a, T: ModuleAccess> FunctionDefinitionView<'a, T>
impl<'a, T: ModuleAccess> FunctionDefinitionView<'a, T>
pub fn new(module: &'a T, function_def: &'a FunctionDefinition) -> Self
pub fn visibility(&self) -> Visibility
pub fn is_entry(&self) -> bool
pub fn is_native(&self) -> bool
pub fn locals_signature(&self) -> Option<LocalsSignatureView<'a, T>>
pub fn name(&self) -> &'a IdentStr
pub fn parameters(&self) -> &'a Signature
pub fn return_(&self) -> &'a Signature
pub fn type_parameters(&self) -> &Vec<AbilitySet>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
pub fn return_tokens(
&self
) -> impl DoubleEndedIterator<Item = SignatureTokenView<'a, T>> + 'a
pub fn arg_tokens(
&self
) -> impl DoubleEndedIterator<Item = SignatureTokenView<'a, T>> + 'a
pub fn return_count(&self) -> usize
pub fn arg_count(&self) -> usize
pub fn code(&self) -> Option<&'a CodeUnit>
Trait Implementations
sourceimpl<'a, T> Clone for FunctionDefinitionView<'a, T>
impl<'a, T> Clone for FunctionDefinitionView<'a, T>
sourceimpl<'a, T: ModuleAccess> ViewInternals for FunctionDefinitionView<'a, T>
impl<'a, T: ModuleAccess> ViewInternals for FunctionDefinitionView<'a, T>
type ModuleType = &'a T
type Inner = &'a FunctionDefinition
fn module(&self) -> Self::ModuleType
fn as_inner(&self) -> Self::Inner
Auto Trait Implementations
impl<'a, T> RefUnwindSafe for FunctionDefinitionView<'a, T> where
T: RefUnwindSafe,
impl<'a, T> Send for FunctionDefinitionView<'a, T> where
T: Sync,
impl<'a, T> Sync for FunctionDefinitionView<'a, T> where
T: Sync,
impl<'a, T> Unpin for FunctionDefinitionView<'a, T>
impl<'a, T> UnwindSafe for FunctionDefinitionView<'a, T> where
T: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
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.
sourcefn clone_into(&self, target: &mut T)
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