pub struct HideBuffer {
pub data: *mut u8,
pub len: usize,
/* private fields */
}Expand description
An owned buffer handed to the caller. Free it with hide_buffer_free.
Fields§
§data: *mut u8§len: usizeAuto Trait Implementations§
impl !Send for HideBuffer
impl !Sync for HideBuffer
impl Freeze for HideBuffer
impl RefUnwindSafe for HideBuffer
impl Unpin for HideBuffer
impl UnsafeUnpin for HideBuffer
impl UnwindSafe for HideBuffer
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