pub struct MethodModifiers(pub u32);Expand description
Method modifiers used during type checking and overload resolution.
Tuple Fields§
§0: u32Implementations§
Source§impl MethodModifiers
impl MethodModifiers
Sourcepub const SYNCHRONIZED: u32 = 0x0020
pub const SYNCHRONIZED: u32 = 0x0020
Method is declared as synchronized.
Trait Implementations§
Source§impl Clone for MethodModifiers
impl Clone for MethodModifiers
Source§fn clone(&self) -> MethodModifiers
fn clone(&self) -> MethodModifiers
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 MethodModifiers
impl Debug for MethodModifiers
Source§impl PartialEq for MethodModifiers
impl PartialEq for MethodModifiers
impl Copy for MethodModifiers
impl Eq for MethodModifiers
impl StructuralPartialEq for MethodModifiers
Auto Trait Implementations§
impl Freeze for MethodModifiers
impl RefUnwindSafe for MethodModifiers
impl Send for MethodModifiers
impl Sync for MethodModifiers
impl Unpin for MethodModifiers
impl UnsafeUnpin for MethodModifiers
impl UnwindSafe for MethodModifiers
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