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.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.