Struct edn::OrderedFloat
[−]
[src]
pub struct OrderedFloat<T>(pub T)
where
T: Float;
A wrapper around Floats providing an implementation of Ord and Hash.
NaN is sorted as greater than all other values and equal to itself, in contradiction with the IEEE standard.
Methods
impl<T> OrderedFloat<T> where
T: Float,
[src]
T: Float,
pub fn into_inner(self) -> T
[src]
Get the value out.
Trait Implementations
impl<T> Default for OrderedFloat<T> where
T: Default + Float,
[src]
T: Default + Float,
fn default() -> OrderedFloat<T>
[src]
Returns the "default value" for a type. Read more
impl<T> AsRef<T> for OrderedFloat<T> where
T: Float,
[src]
T: Float,
impl<T> From<T> for OrderedFloat<T> where
T: Float,
[src]
T: Float,
fn from(val: T) -> OrderedFloat<T>
[src]
Performs the conversion.
impl<'de, T> Deserialize<'de> for OrderedFloat<T> where
T: Float + Deserialize<'de>,
[src]
T: Float + Deserialize<'de>,
fn deserialize<D>(
d: D
) -> Result<OrderedFloat<T>, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
[src]
d: D
) -> Result<OrderedFloat<T>, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl<T> Copy for OrderedFloat<T> where
T: Copy + Float,
[src]
T: Copy + Float,
impl Into<f64> for OrderedFloat<f64>
[src]
impl Into<f32> for OrderedFloat<f32>
[src]
impl<T> Eq for OrderedFloat<T> where
T: PartialEq<T> + Float,
[src]
T: PartialEq<T> + Float,
impl<T> Display for OrderedFloat<T> where
T: Display + Float,
[src]
T: Display + Float,
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter. Read more
impl<T> PartialEq<OrderedFloat<T>> for OrderedFloat<T> where
T: PartialEq<T> + Float,
[src]
T: PartialEq<T> + Float,
fn eq(&self, other: &OrderedFloat<T>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<T> AsMut<T> for OrderedFloat<T> where
T: Float,
[src]
T: Float,
impl<T> Hash for OrderedFloat<T> where
T: Float,
[src]
T: Float,
fn hash<H>(&self, state: &mut H) where
H: Hasher,
[src]
H: Hasher,
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl<T> PartialOrd<OrderedFloat<T>> for OrderedFloat<T> where
T: PartialOrd<T> + Float,
[src]
T: PartialOrd<T> + Float,
fn partial_cmp(&self, __arg_0: &OrderedFloat<T>) -> Option<Ordering>
[src]
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, __arg_0: &OrderedFloat<T>) -> bool
[src]
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, __arg_0: &OrderedFloat<T>) -> bool
[src]
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, __arg_0: &OrderedFloat<T>) -> bool
[src]
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, __arg_0: &OrderedFloat<T>) -> bool
[src]
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl<T> Deref for OrderedFloat<T> where
T: Float,
[src]
T: Float,
type Target = T
The resulting type after dereferencing.
fn deref(&self) -> &<OrderedFloat<T> as Deref>::Target
[src]
Dereferences the value.
impl<T> DerefMut for OrderedFloat<T> where
T: Float,
[src]
T: Float,
fn deref_mut(&mut self) -> &mut <OrderedFloat<T> as Deref>::Target
[src]
Mutably dereferences the value.
impl<T> Debug for OrderedFloat<T> where
T: Debug + Float,
[src]
T: Debug + Float,
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter. Read more
impl<T> Clone for OrderedFloat<T> where
T: Clone + Float,
[src]
T: Clone + Float,
fn clone(&self) -> OrderedFloat<T>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<T> Ord for OrderedFloat<T> where
T: PartialOrd<T> + Float,
[src]
T: PartialOrd<T> + Float,
fn cmp(&self, other: &OrderedFloat<T>) -> Ordering
[src]
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
Compares and returns the minimum of two values. Read more
impl<T> Serialize for OrderedFloat<T> where
T: Float + Serialize,
[src]
T: Float + Serialize,
fn serialize<S>(
&self,
s: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
[src]
&self,
s: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
Serialize this value into the given Serde serializer. Read more