[][src]Type Definition unsegen::input::OperationResult

type OperationResult = Result<(), ()>;

A common return type for Operations such as functions of Scrollable, Writable, Navigatable, etc.

Ok(()) means: The input was processed successfully and should be consumed. Err(()) means: The input could not be processed and should be passed on to and processed by some other Behavior.