#[repr(C)]pub struct blob_buf {
pub head: *mut blob_attr,
pub grow: Option<unsafe extern "C" fn(buf: *mut blob_buf, minlen: c_int) -> bool>,
pub buflen: c_int,
pub buf: *mut c_void,
}Fields§
§head: *mut blob_attr§grow: Option<unsafe extern "C" fn(buf: *mut blob_buf, minlen: c_int) -> bool>§buflen: c_int§buf: *mut c_voidTrait Implementations§
impl Copy for blob_buf
Auto Trait Implementations§
impl Freeze for blob_buf
impl RefUnwindSafe for blob_buf
impl !Send for blob_buf
impl !Sync for blob_buf
impl Unpin for blob_buf
impl UnsafeUnpin for blob_buf
impl UnwindSafe for blob_buf
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