Trait enso_flexer::prelude::logger::prelude::HasContent[][src]

pub trait HasContent {
    type Content: ?Sized;
}
Expand description

Trait for any type which wraps other type. See docs of Wrapper to learn more.

Associated Types

Loading content...

Implementations on Foreign Types

impl<T> HasContent for Vec<T, Global>[src]

type Content = T

impl HasContent for String[src]

type Content = char

Loading content...

Implementors

impl<T> HasContent for Rc<T> where
    T: ?Sized
[src]

type Content = T

Loading content...