#[repr(C)]pub struct AVBPrint {
pub str_: *mut i8,
pub len: u32,
pub size: u32,
pub size_max: u32,
pub reserved_internal_buffer: [i8; 1],
pub reserved_padding: [i8; 1000],
}
Expand description
@}
Fields§
§str_: *mut i8
< string so far
len: u32
< length so far
size: u32
< allocated memory
size_max: u32
< maximum allocated memory
reserved_internal_buffer: [i8; 1]
§reserved_padding: [i8; 1000]
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AVBPrint
impl RefUnwindSafe for AVBPrint
impl !Send for AVBPrint
impl !Sync for AVBPrint
impl Unpin for AVBPrint
impl UnwindSafe for AVBPrint
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