pub enum ElementValue {
Constant {
const_value_index: u16,
},
EnumConstant {
type_name_index: u16,
const_name_index: u16,
},
Class {
class_info_index: u16,
},
Annotation(Annotation),
Array(Vec<ElementValue>),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ElementValue
impl RefUnwindSafe for ElementValue
impl Send for ElementValue
impl Sync for ElementValue
impl Unpin for ElementValue
impl UnwindSafe for ElementValue
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