Struct hapi_rs::stringhandle::StringArray
source · pub struct StringArray(_);
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.