Trait cursive::prelude::Identifiable [] [src]

pub trait Identifiable: View + Sized {
    fn with_id(self, id: &str) -> IdView<Self> { ... }
}

Makes a view wrappable in an IdView.

Provided Methods

fn with_id(self, id: &str) -> IdView<Self>

Wraps this view into an IdView with the given id.

Implementors