pub enum ExtraResult {
    None,
    NoCopy,
    Done,
}
Expand description

Extra information returned by some of the Chip methods on success.

Variants

None

Indicates that the caller (irq core) will update the descriptor state.

NoCopy

Indicates that the callee (irq chip implementation) already updated the descriptor state.

Done

Same as ExtraResult::None in terms of updating descriptor state. It is used in stacked irq chips to indicate that descendant chips should be skipped.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.