Enum dutree::XResult[][src]

pub enum XResult<T, S> {
    XOk(T),
    XErr(S),
    XExit,
}

Variants

Auto Trait Implementations

impl<T, S> Send for XResult<T, S> where
    S: Send,
    T: Send

impl<T, S> Sync for XResult<T, S> where
    S: Sync,
    T: Sync