Struct vec_strings::StringsNoIndex [−][src]
pub struct StringsNoIndex { /* fields omitted */ }
Expand description
Store any string efficiently in an immutable way.
Can store at most u32::MAX
strings and only provides
StringsNoIndexIter
and does not provide arbitary indexing.
Implementations
len
- number of strings
NOTE that this function does nothing and is defined just to be compatible
with Strings
.
pub fn iter(&self) -> StringsNoIndexIter<'_>ⓘNotable traits for StringsNoIndexIter<'a>impl<'a> Iterator for StringsNoIndexIter<'a> type Item = &'a str;
Notable traits for StringsNoIndexIter<'a>
impl<'a> Iterator for StringsNoIndexIter<'a> type Item = &'a str;
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for StringsNoIndex
impl Send for StringsNoIndex
impl Sync for StringsNoIndex
impl Unpin for StringsNoIndex
impl UnwindSafe for StringsNoIndex
Blanket Implementations
Mutably borrows from an owned value. Read more