pub struct BytecodeClass {
pub class_name: ConstantIndex,
pub property_names: Vec<ConstantIndex>,
pub method_names: Vec<ConstantIndex>,
}Fields§
§class_name: ConstantIndex§property_names: Vec<ConstantIndex>§method_names: Vec<ConstantIndex>Trait Implementations§
Source§impl Clone for BytecodeClass
impl Clone for BytecodeClass
Source§fn clone(&self) -> BytecodeClass
fn clone(&self) -> BytecodeClass
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 BytecodeClass
impl Debug for BytecodeClass
impl Eq for BytecodeClass
Source§impl Hash for BytecodeClass
impl Hash for BytecodeClass
Source§impl PartialEq for BytecodeClass
impl PartialEq for BytecodeClass
impl StructuralPartialEq for BytecodeClass
Auto Trait Implementations§
impl Freeze for BytecodeClass
impl RefUnwindSafe for BytecodeClass
impl Send for BytecodeClass
impl Sync for BytecodeClass
impl Unpin for BytecodeClass
impl UnsafeUnpin for BytecodeClass
impl UnwindSafe for BytecodeClass
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