Enum move_ir_types::ast::FunctionVisibility
source · [−]pub enum FunctionVisibility {
Public,
Friend,
Internal,
}
Expand description
Public or internal modifier for a procedure
Variants
Public
The procedure can be invoked anywhere
public
Friend
The procedure can be invoked internally as well as by modules in the friend list
public(friend)
Internal
The procedure can be invoked only internally
<no modifier>
Trait Implementations
sourceimpl Clone for FunctionVisibility
impl Clone for FunctionVisibility
sourcefn clone(&self) -> FunctionVisibility
fn clone(&self) -> FunctionVisibility
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 FunctionVisibility
impl Debug for FunctionVisibility
impl StructuralPartialEq for FunctionVisibility
Auto Trait Implementations
impl RefUnwindSafe for FunctionVisibility
impl Send for FunctionVisibility
impl Sync for FunctionVisibility
impl Unpin for FunctionVisibility
impl UnwindSafe for FunctionVisibility
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