pub struct JvmAnnotation {
pub type_name: String,
pub elements: Vec<JvmAnnotationElement>,
}Expand description
JVM annotation
Fields§
§type_name: StringAnnotation type
elements: Vec<JvmAnnotationElement>Annotation elements
Trait Implementations§
Source§impl Clone for JvmAnnotation
impl Clone for JvmAnnotation
Source§fn clone(&self) -> JvmAnnotation
fn clone(&self) -> JvmAnnotation
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 JvmAnnotation
impl RefUnwindSafe for JvmAnnotation
impl Send for JvmAnnotation
impl Sync for JvmAnnotation
impl Unpin for JvmAnnotation
impl UnsafeUnpin for JvmAnnotation
impl UnwindSafe for JvmAnnotation
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