pub struct CStringList {
pub list: Vec<CString>,
}Fields§
§list: Vec<CString>Implementations§
Source§impl CStringList
impl CStringList
pub fn into_plain(self) -> Vec<String>
Trait Implementations§
Source§impl Clone for CStringList
impl Clone for CStringList
Source§fn clone(&self) -> CStringList
fn clone(&self) -> CStringList
Returns a duplicate of the value. Read more
1.0.0 · 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 CStringList
impl Debug for CStringList
Source§impl FromCursor for CStringList
impl FromCursor for CStringList
Source§fn from_cursor(cursor: &mut Cursor<&[u8]>) -> CDRSResult<CStringList>
fn from_cursor(cursor: &mut Cursor<&[u8]>) -> CDRSResult<CStringList>
It should return an implementor from an
io::Cursor over an array of bytes.Source§impl IntoBytes for CStringList
impl IntoBytes for CStringList
Auto Trait Implementations§
impl Freeze for CStringList
impl RefUnwindSafe for CStringList
impl Send for CStringList
impl Sync for CStringList
impl Unpin for CStringList
impl UnwindSafe for CStringList
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