Struct fera_optional::Optioned [] [src]

pub struct Optioned<T, B: BuildNone<T>> { /* fields omitted */ }

An Optional that represents None with a specified value (B::none()) of T domain.

Trait Implementations

impl<T: Clone, B: Clone + BuildNone<T>> Clone for Optioned<T, B>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Copy, B: Copy + BuildNone<T>> Copy for Optioned<T, B>
[src]

impl<T: PartialEq, B: PartialEq + BuildNone<T>> PartialEq for Optioned<T, B>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<T: PartialOrd, B: PartialOrd + BuildNone<T>> PartialOrd for Optioned<T, B>
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

[src]

This method tests less than (for self and other) and is used by the < operator. Read more

[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<T: Eq, B: Eq + BuildNone<T>> Eq for Optioned<T, B>
[src]

impl<T: Ord, B: Ord + BuildNone<T>> Ord for Optioned<T, B>
[src]

[src]

This method returns an Ordering between self and other. Read more

1.22.0
[src]

Compares and returns the maximum of two values. Read more

1.22.0
[src]

Compares and returns the minimum of two values. Read more

impl<T: Hash, B: Hash + BuildNone<T>> Hash for Optioned<T, B>
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<T: Eq + Debug, B: BuildNone<T>> Debug for Optioned<T, B>
[src]

[src]

Formats the value using the given formatter.

impl<T, B: BuildNone<T>> Default for Optioned<T, B>
[src]

[src]

Returns the "default value" for a type. Read more

impl<T, B: BuildNone<T>> From<Option<T>> for Optioned<T, B>
[src]

[src]

Performs the conversion.

impl<T, B: BuildNone<T>> From<T> for Optioned<T, B>
[src]

[src]

Performs the conversion.

impl<T: Eq, B: BuildNone<T>> Optional<T> for Optioned<T, B>
[src]

[src]

Returns an Option<&T> that is equivalent to this Optional.

[src]

Returns an Option<&mut T> that is equivalent to this Optional.

[src]

Converts this Optional to the equivalent Option.