Struct tc_value::ValueCollator
source · pub struct ValueCollator { /* private fields */ }
Trait Implementations§
source§impl Clone for ValueCollator
impl Clone for ValueCollator
source§fn clone(&self) -> ValueCollator
fn clone(&self) -> ValueCollator
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 Collate for ValueCollator
impl Collate for ValueCollator
type Value = Value
source§fn compare(&self, left: &Self::Value, right: &Self::Value) -> Ordering
fn compare(&self, left: &Self::Value, right: &Self::Value) -> Ordering
Define the relative ordering of
Self::Value
.source§fn bisect<V, B>(
&self,
slice: &[V],
range: &Range<Self::Value, B>
) -> (usize, usize)where
V: AsRef<[Self::Value]>,
B: Borrow<[Self::Value]>,
fn bisect<V, B>(
&self,
slice: &[V],
range: &Range<Self::Value, B>
) -> (usize, usize)where
V: AsRef<[Self::Value]>,
B: Borrow<[Self::Value]>,
Given a collection of slices, return the start and end indices which match the given range.
source§fn bisect_left<V>(&self, slice: &[V], key: &[Self::Value]) -> usizewhere
V: AsRef<[Self::Value]>,
fn bisect_left<V>(&self, slice: &[V], key: &[Self::Value]) -> usizewhere
V: AsRef<[Self::Value]>,
Given a collection of slices, return the leftmost insert point matching the given key.
source§fn bisect_right<V>(&self, slice: &[V], key: &[Self::Value]) -> usizewhere
V: AsRef<[Self::Value]>,
fn bisect_right<V>(&self, slice: &[V], key: &[Self::Value]) -> usizewhere
V: AsRef<[Self::Value]>,
Given a collection of slices, return the rightmost insert point matching the given key.
source§fn compare_range<B>(
&self,
key: &[Self::Value],
range: &Range<Self::Value, B>
) -> Orderingwhere
B: Borrow<[Self::Value]>,
fn compare_range<B>(
&self,
key: &[Self::Value],
range: &Range<Self::Value, B>
) -> Orderingwhere
B: Borrow<[Self::Value]>,
Returns the ordering of the given key relative to the given range.
source§impl Default for ValueCollator
impl Default for ValueCollator
source§fn default() -> ValueCollator
fn default() -> ValueCollator
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ValueCollator
impl Send for ValueCollator
impl Sync for ValueCollator
impl Unpin for ValueCollator
impl UnwindSafe for ValueCollator
Blanket Implementations§
source§impl<F> Match for F
impl<F> Match for F
source§fn matches<T>(&self) -> boolwhere
T: TryCastFrom<Self>,
fn matches<T>(&self) -> boolwhere
T: TryCastFrom<Self>,
Returns
true
if self
can be cast into the target type T
.source§impl<F, T> TryCastFrom<F> for Twhere
T: CastFrom<F>,
impl<F, T> TryCastFrom<F> for Twhere
T: CastFrom<F>,
source§fn can_cast_from(_: &F) -> bool
fn can_cast_from(_: &F) -> bool
Test if
value
can be cast into Self
.source§fn opt_cast_from(f: F) -> Option<T>
fn opt_cast_from(f: F) -> Option<T>
Returns
Some(Self)
if the source value can be cast into Self
, otherwise None
.source§impl<F, T> TryCastInto<T> for Fwhere
T: TryCastFrom<F>,
impl<F, T> TryCastInto<T> for Fwhere
T: TryCastFrom<F>,
source§fn can_cast_into(&self) -> bool
fn can_cast_into(&self) -> bool
Test if
self
can be cast into T
.source§fn opt_cast_into(self) -> Option<T>
fn opt_cast_into(self) -> Option<T>
Returns
Some(T)
if self
can be cast into T
, otherwise None
.