Trait enso_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

Implementations on Foreign Types

impl HasContent for String[src]

type Content = char

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

type Content = T

Implementors

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

type Content = T