pub struct Code {
pub max_stack: U2,
pub max_locals: U2,
pub code: Arc<Vec<U1>>,
pub exceptions: Vec<CodeException>,
pub attrs: Vec<Type>,
}
Fields§
§max_stack: U2
§max_locals: U2
§code: Arc<Vec<U1>>
§exceptions: Vec<CodeException>
§attrs: Vec<Type>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Code
impl RefUnwindSafe for Code
impl Send for Code
impl Sync for Code
impl Unpin for Code
impl UnwindSafe for Code
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