pub struct MethodAccessFlags {
pub acc_public: bool,
pub acc_private: bool,
pub acc_protected: bool,
pub acc_static: bool,
pub acc_final: bool,
pub acc_synchronized: bool,
pub acc_bridge: bool,
pub acc_varargs: bool,
pub acc_native: bool,
pub acc_abstract: bool,
pub acc_strict: bool,
pub acc_synthetic: bool,
}
Fields§
§acc_public: bool
§acc_private: bool
§acc_protected: bool
§acc_static: bool
§acc_final: bool
§acc_synchronized: bool
§acc_bridge: bool
§acc_varargs: bool
§acc_native: bool
§acc_abstract: bool
§acc_strict: bool
§acc_synthetic: bool
Trait Implementations§
Source§impl Debug for MethodAccessFlags
impl Debug for MethodAccessFlags
Source§impl<'de> Deserialize<'de> for MethodAccessFlags
impl<'de> Deserialize<'de> for MethodAccessFlags
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MethodAccessFlags
impl RefUnwindSafe for MethodAccessFlags
impl Send for MethodAccessFlags
impl Sync for MethodAccessFlags
impl Unpin for MethodAccessFlags
impl UnwindSafe for MethodAccessFlags
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