pub struct InnerClass {
pub inner_class_index: u16,
pub outer_class_index: u16,
pub inner_name_index: u16,
pub access_flags: u16,
}Expand description
One InnerClasses table row.
Fields§
§inner_class_index: u16Class index for the nested class.
outer_class_index: u16Enclosing class index, or zero.
inner_name_index: u16Simple-name index, or zero for anonymous classes.
access_flags: u16Raw inner-class access flags.
Trait Implementations§
Source§impl Clone for InnerClass
impl Clone for InnerClass
Source§fn clone(&self) -> InnerClass
fn clone(&self) -> InnerClass
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for InnerClass
Source§impl Debug for InnerClass
impl Debug for InnerClass
impl Eq for InnerClass
Source§impl PartialEq for InnerClass
impl PartialEq for InnerClass
impl StructuralPartialEq for InnerClass
Auto Trait Implementations§
impl Freeze for InnerClass
impl RefUnwindSafe for InnerClass
impl Send for InnerClass
impl Sync for InnerClass
impl Unpin for InnerClass
impl UnsafeUnpin for InnerClass
impl UnwindSafe for InnerClass
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