pub struct JvmMethodParameter {
pub name: Option<String>,
pub access_flags: u16,
}Expand description
JVM method parameter
Fields§
§name: Option<String>Parameter name
access_flags: u16Access flags
Trait Implementations§
Source§impl Clone for JvmMethodParameter
impl Clone for JvmMethodParameter
Source§fn clone(&self) -> JvmMethodParameter
fn clone(&self) -> JvmMethodParameter
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 moreAuto Trait Implementations§
impl Freeze for JvmMethodParameter
impl RefUnwindSafe for JvmMethodParameter
impl Send for JvmMethodParameter
impl Sync for JvmMethodParameter
impl Unpin for JvmMethodParameter
impl UnsafeUnpin for JvmMethodParameter
impl UnwindSafe for JvmMethodParameter
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