#[repr(C)]pub struct StrBuffer {
pub owned_strings: *mut *mut c_char,
pub n_owned_strings: usize,
}Expand description
StrBuffer instance
Place this struct directly wherever you want, it doesn’t have to be alloced
and freed.
Fields§
§owned_strings: *mut *mut c_char§n_owned_strings: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for StrBuffer
impl RefUnwindSafe for StrBuffer
impl !Send for StrBuffer
impl !Sync for StrBuffer
impl Unpin for StrBuffer
impl UnwindSafe for StrBuffer
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