pub enum RPool {
Str(String),
Data(Vec<u8>),
}Expand description
Constant pool entry emitted by mruby bytecode. Strings or binary blobs is supported for now.
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RPool
impl RefUnwindSafe for RPool
impl Send for RPool
impl Sync for RPool
impl Unpin for RPool
impl UnwindSafe for RPool
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