pub struct OpcodeCache {
pub standard: HashMap<Arc<str>, Arc<[Opcode]>>,
pub unary: HashMap<Arc<str>, Arc<[Opcode]>>,
}Fields§
§standard: HashMap<Arc<str>, Arc<[Opcode]>>§unary: HashMap<Arc<str>, Arc<[Opcode]>>Implementations§
Source§impl OpcodeCache
impl OpcodeCache
Trait Implementations§
Source§impl Clone for OpcodeCache
impl Clone for OpcodeCache
Source§fn clone(&self) -> OpcodeCache
fn clone(&self) -> OpcodeCache
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 moreSource§impl Debug for OpcodeCache
impl Debug for OpcodeCache
Source§impl PartialEq for OpcodeCache
impl PartialEq for OpcodeCache
impl Eq for OpcodeCache
impl StructuralPartialEq for OpcodeCache
Auto Trait Implementations§
impl Freeze for OpcodeCache
impl RefUnwindSafe for OpcodeCache
impl Send for OpcodeCache
impl Sync for OpcodeCache
impl Unpin for OpcodeCache
impl UnsafeUnpin for OpcodeCache
impl UnwindSafe for OpcodeCache
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