#[repr(C)]pub struct StringList {
pub sl_str: *mut *mut c_char,
pub sl_max: size_t,
pub sl_cur: size_t,
}Fields§
§sl_str: *mut *mut c_char§sl_max: size_t§sl_cur: size_tAuto Trait Implementations§
impl Freeze for StringList
impl RefUnwindSafe for StringList
impl !Send for StringList
impl !Sync for StringList
impl Unpin for StringList
impl UnsafeUnpin for StringList
impl UnwindSafe for StringList
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