pub struct ConstPools {
pub bytes: Vec<i8>,
pub shorts: Vec<i16>,
pub ints: Vec<i32>,
pub longs: Vec<i64>,
pub doubles: Vec<f64>,
pub strings: Vec<String>,
pub octets: Vec<Vec<u8>>,
}Fields§
§bytes: Vec<i8>§shorts: Vec<i16>§ints: Vec<i32>§longs: Vec<i64>§doubles: Vec<f64>§strings: Vec<String>§octets: Vec<Vec<u8>>Trait Implementations§
Source§impl Clone for ConstPools
impl Clone for ConstPools
Source§fn clone(&self) -> ConstPools
fn clone(&self) -> ConstPools
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 ConstPools
impl Debug for ConstPools
Source§impl Default for ConstPools
impl Default for ConstPools
Source§fn default() -> ConstPools
fn default() -> ConstPools
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ConstPools
impl RefUnwindSafe for ConstPools
impl Send for ConstPools
impl Sync for ConstPools
impl Unpin for ConstPools
impl UnwindSafe for ConstPools
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