pub trait ResultDefs<T> {
    const CANCELLED: Result<T>;
    const WEIRD: Result<T>;
}

Required Associated Constants§

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> ResultDefs<T> for Result<T>

source§

const CANCELLED: Result<T> = _

source§

const WEIRD: Result<T> = _