pub struct FoldableChunkedString(pub Vec<FoldableStringChunk>);
Expand description
A string whose elements can set whether they do case folding.
Tuple Fields§
§0: Vec<FoldableStringChunk>
Trait Implementations§
source§impl Clone for FoldableChunkedString
impl Clone for FoldableChunkedString
source§fn clone(&self) -> FoldableChunkedString
fn clone(&self) -> FoldableChunkedString
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 FoldableChunkedString
impl Debug for FoldableChunkedString
source§impl Default for FoldableChunkedString
impl Default for FoldableChunkedString
source§fn default() -> FoldableChunkedString
fn default() -> FoldableChunkedString
Returns the “default value” for a type. Read more
source§impl From<FoldableChunkedString> for ChunkedString
impl From<FoldableChunkedString> for ChunkedString
source§fn from(value: FoldableChunkedString) -> Self
fn from(value: FoldableChunkedString) -> Self
Converts to this type from the input type.
source§impl Hash for FoldableChunkedString
impl Hash for FoldableChunkedString
source§impl PartialEq for FoldableChunkedString
impl PartialEq for FoldableChunkedString
source§impl TryFrom<ChunkedString> for FoldableChunkedString
impl TryFrom<ChunkedString> for FoldableChunkedString
impl Eq for FoldableChunkedString
impl StructuralPartialEq for FoldableChunkedString
Auto Trait Implementations§
impl Freeze for FoldableChunkedString
impl RefUnwindSafe for FoldableChunkedString
impl Send for FoldableChunkedString
impl Sync for FoldableChunkedString
impl Unpin for FoldableChunkedString
impl UnwindSafe for FoldableChunkedString
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.