Enum experimental_reactive::activator::ActivateError [] [src]

pub enum ActivateError<T> {
    SourceActivationError(SourceError),
    SlotActivationError(SlotError<T>),
    NotConnected,
}

Variants

Trait Implementations

impl<T: PartialOrd> PartialOrd for ActivateError<T>
[src]

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

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

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

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

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

impl<T: Ord> Ord for ActivateError<T>
[src]

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

impl<T: PartialEq> PartialEq for ActivateError<T>
[src]

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

This method tests for !=.

impl<T: Eq> Eq for ActivateError<T>
[src]

impl<T: Debug> Debug for ActivateError<T>
[src]

Formats the value using the given formatter.

impl<T> From<SourceError> for ActivateError<T>
[src]

Performs the conversion.

impl<T> From<SlotError<T>> for ActivateError<T>
[src]

Performs the conversion.