Struct hapi_rs::stringhandle::StringArray
source · pub struct StringArray(/* private fields */);
Expand description
Holds a contiguous array of bytes where each individual string value is null-separated.
You can choose how to iterate over it by calling a corresponding iter_* function.
The Debug
impl has an alternative {:#?}
representation, which prints as a vec of strings.
Implementations§
Trait Implementations§
source§impl Clone for StringArray
impl Clone for StringArray
source§fn clone(&self) -> StringArray
fn clone(&self) -> StringArray
Returns a copy 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 StringArray
impl Debug for StringArray
source§impl From<StringArray> for Vec<String>
impl From<StringArray> for Vec<String>
source§fn from(a: StringArray) -> Self
fn from(a: StringArray) -> Self
Converts to this type from the input type.
source§impl IntoIterator for StringArray
impl IntoIterator for StringArray
Auto Trait Implementations§
impl RefUnwindSafe for StringArray
impl Send for StringArray
impl Sync for StringArray
impl Unpin for StringArray
impl UnwindSafe for StringArray
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