pub struct PoolEntry {
pub pool_id: u32,
pub data: Vec<u8>,
}Expand description
An owned string pool entry.
Fields§
§pool_id: u32Pool ID assigned by the encoder.
data: Vec<u8>Raw string data.
Trait Implementations§
impl StructuralPartialEq for PoolEntry
Auto Trait Implementations§
impl Freeze for PoolEntry
impl RefUnwindSafe for PoolEntry
impl Send for PoolEntry
impl Sync for PoolEntry
impl Unpin for PoolEntry
impl UnsafeUnpin for PoolEntry
impl UnwindSafe for PoolEntry
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