#[repr(C)]pub struct Print_StringList {
pub count: u32,
pub list: *mut *mut c_char,
}Available on crate features
print and api-12 only.Expand description
Indicates string list.
Available since API-level: 12
Fields§
§count: u32Number of string.
list: *mut *mut c_charString pointer array.
Trait Implementations§
Source§impl Clone for Print_StringList
impl Clone for Print_StringList
Source§fn clone(&self) -> Print_StringList
fn clone(&self) -> Print_StringList
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Print_StringList
impl Debug for Print_StringList
impl Copy for Print_StringList
Auto Trait Implementations§
impl Freeze for Print_StringList
impl RefUnwindSafe for Print_StringList
impl !Send for Print_StringList
impl !Sync for Print_StringList
impl Unpin for Print_StringList
impl UnsafeUnpin for Print_StringList
impl UnwindSafe for Print_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