pub struct AnnotationsDirectoryItem {
pub class_annotations_off: u32,
pub field_size: u32,
pub annotated_methods_size: u32,
pub annotated_parameters_size: u32,
pub field_annotations: Vec<FieldAnnotation>,
pub method_annotations: Vec<MethodAnnotation>,
pub parameter_annotations: Vec<ParameterAnnotation>,
}Fields§
§class_annotations_off: u32§field_size: u32§annotated_methods_size: u32§annotated_parameters_size: u32§field_annotations: Vec<FieldAnnotation>§method_annotations: Vec<MethodAnnotation>§parameter_annotations: Vec<ParameterAnnotation>Implementations§
Trait Implementations§
Source§impl Clone for AnnotationsDirectoryItem
impl Clone for AnnotationsDirectoryItem
Source§fn clone(&self) -> AnnotationsDirectoryItem
fn clone(&self) -> AnnotationsDirectoryItem
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 moreSource§impl Debug for AnnotationsDirectoryItem
impl Debug for AnnotationsDirectoryItem
Source§impl PartialEq for AnnotationsDirectoryItem
impl PartialEq for AnnotationsDirectoryItem
Source§fn eq(&self, other: &AnnotationsDirectoryItem) -> bool
fn eq(&self, other: &AnnotationsDirectoryItem) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AnnotationsDirectoryItem
impl PartialOrd for AnnotationsDirectoryItem
impl StructuralPartialEq for AnnotationsDirectoryItem
Auto Trait Implementations§
impl Freeze for AnnotationsDirectoryItem
impl RefUnwindSafe for AnnotationsDirectoryItem
impl Send for AnnotationsDirectoryItem
impl Sync for AnnotationsDirectoryItem
impl Unpin for AnnotationsDirectoryItem
impl UnsafeUnpin for AnnotationsDirectoryItem
impl UnwindSafe for AnnotationsDirectoryItem
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