Trait aoko::standard::functions::ext::StdAnyExt[][src]

pub trait StdAnyExt: Sized {
    fn dbg(self) -> Self
    where
        Self: Debug
, { ... }
fn sout(self) -> Self
    where
        Self: Debug
, { ... }
fn echo(self) -> Self
    where
        Self: Display
, { ... } }
Expand description

This trait is to implement some extension functions for any sized type.

Provided methods

System output -> with :#?’s println!.

Consumes self, println! with :#?, returns self.

System output -> with :?’s println!.

Consumes self, println! with :?, returns self.

Consumes self, println! as it is, returns self.

Implementors