pub struct ClrMethodImplFlags {
pub is_managed: bool,
pub is_native: bool,
pub is_runtime: bool,
pub is_inline: bool,
pub is_no_inline: bool,
pub is_synchronized: bool,
}Expand description
CLR method implementation flags
Fields§
§is_managed: boolManaged implementation
is_native: boolNative implementation
is_runtime: boolRuntime implementation
is_inline: boolInline
is_no_inline: boolNo inline
is_synchronized: boolSynchronized
Trait Implementations§
Source§impl Clone for ClrMethodImplFlags
impl Clone for ClrMethodImplFlags
Source§fn clone(&self) -> ClrMethodImplFlags
fn clone(&self) -> ClrMethodImplFlags
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ClrMethodImplFlags
impl Debug for ClrMethodImplFlags
Source§impl Default for ClrMethodImplFlags
impl Default for ClrMethodImplFlags
Source§impl Hash for ClrMethodImplFlags
impl Hash for ClrMethodImplFlags
Source§impl PartialEq for ClrMethodImplFlags
impl PartialEq for ClrMethodImplFlags
impl Copy for ClrMethodImplFlags
impl Eq for ClrMethodImplFlags
impl StructuralPartialEq for ClrMethodImplFlags
Auto Trait Implementations§
impl Freeze for ClrMethodImplFlags
impl RefUnwindSafe for ClrMethodImplFlags
impl Send for ClrMethodImplFlags
impl Sync for ClrMethodImplFlags
impl Unpin for ClrMethodImplFlags
impl UnsafeUnpin for ClrMethodImplFlags
impl UnwindSafe for ClrMethodImplFlags
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more