Trait cushy::widgets::input::InputValue
source · pub trait InputValue<Storage>: IntoDynamic<Storage> + Sizedwhere
Storage: InputStorage,{
// Provided methods
fn into_input(self) -> Input<Storage> { ... }
fn to_input(&self) -> Input<Storage>
where Self: Clone { ... }
}
Expand description
A type that can be converted into a Dynamic
containing Storage
.
Provided Methods§
sourcefn into_input(self) -> Input<Storage>
fn into_input(self) -> Input<Storage>
Returns this string as a text input widget.
Object Safety§
This trait is not object safe.