pub struct RawValue {
pub class: i32,
pub tag: i32,
pub is_compound: bool,
pub bytes: Vec<u8>,
pub full_bytes: Vec<u8>,
}
Fields§
§class: i32
§tag: i32
§is_compound: bool
§bytes: Vec<u8>
§full_bytes: Vec<u8>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RawValue
impl RefUnwindSafe for RawValue
impl Send for RawValue
impl Sync for RawValue
impl Unpin for RawValue
impl UnwindSafe for RawValue
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