SSOrer

Trait SSOrer 

Source
pub trait SSOrer: Sized {
    // Provided methods
    fn ss_or<B>(self, b: B) -> SSOR<Self, B> { ... }
    fn p_then<B>(self, b: B) -> PartThen<Self, B> { ... }
}

Provided Methods§

Source

fn ss_or<B>(self, b: B) -> SSOR<Self, B>

Source

fn p_then<B>(self, b: B) -> PartThen<Self, B>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T: Sized> SSOrer for T