pub struct MutatableRawType<'a> {
pub data: &'a mut Vec<u8>,
}Fields§
§data: &'a mut Vec<u8>Implementations§
Source§impl MutatableRawType<'_>
impl MutatableRawType<'_>
pub fn get_type_id(&self) -> TypeId
pub fn set_type_id(&mut self, type_id: TypeId)
pub fn get_raw_type(&self) -> RawType
pub fn set_data(&mut self, data: Vec<u8>)
Auto Trait Implementations§
impl<'a> !UnwindSafe for MutatableRawType<'a>
impl<'a> Freeze for MutatableRawType<'a>
impl<'a> RefUnwindSafe for MutatableRawType<'a>
impl<'a> Send for MutatableRawType<'a>
impl<'a> Sync for MutatableRawType<'a>
impl<'a> Unpin for MutatableRawType<'a>
impl<'a> UnsafeUnpin for MutatableRawType<'a>
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