Struct trimmer::Comparable [] [src]

pub struct Comparable<'a>(_);

An internal representation of something that can be compared

Only numbers and strings can be compared for now.

Use into() conversion to make the value.

Trait Implementations

impl<'a> Debug for Comparable<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> From<bool> for Comparable<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<i8> for Comparable<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<i16> for Comparable<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<i32> for Comparable<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<i64> for Comparable<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<isize> for Comparable<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<usize> for Comparable<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<u8> for Comparable<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<u16> for Comparable<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<u32> for Comparable<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<u64> for Comparable<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<f64> for Comparable<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<f32> for Comparable<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<&'a str> for Comparable<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<String> for Comparable<'a>
[src]

[src]

Performs the conversion.