Struct patternfly_yew::TextAreaProps
source · pub struct TextAreaProps {Show 16 fields
pub name: String,
pub value: String,
pub required: bool,
pub disabled: bool,
pub readonly: bool,
pub state: InputState,
pub placeholder: String,
pub spellcheck: Option<bool>,
pub wrap: Wrap,
pub rows: Option<usize>,
pub cols: Option<usize>,
pub resize: ResizeOrientation,
pub onchange: Callback<String>,
pub oninput: Callback<String>,
pub onvalidate: Callback<ValidationContext<String>>,
pub validator: Validator<String, InputState>,
}Fields§
§name: String§value: String§required: bool§disabled: bool§readonly: bool§state: InputState§placeholder: String§spellcheck: Option<bool>§wrap: Wrap§rows: Option<usize>§cols: Option<usize>§resize: ResizeOrientation§onchange: Callback<String>§oninput: Callback<String>§onvalidate: Callback<ValidationContext<String>>§validator: Validator<String, InputState>Trait Implementations§
source§impl Clone for TextAreaProps
impl Clone for TextAreaProps
source§fn clone(&self) -> TextAreaProps
fn clone(&self) -> TextAreaProps
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl PartialEq<TextAreaProps> for TextAreaProps
impl PartialEq<TextAreaProps> for TextAreaProps
source§fn eq(&self, other: &TextAreaProps) -> bool
fn eq(&self, other: &TextAreaProps) -> bool
source§impl Properties for TextAreaProps
impl Properties for TextAreaProps
source§impl ValidatingComponentProperties<String> for TextAreaProps
impl ValidatingComponentProperties<String> for TextAreaProps
fn set_onvalidate(&mut self, onvalidate: Callback<ValidationContext<String>>)
fn set_input_state(&mut self, state: InputState)
impl StructuralPartialEq for TextAreaProps
Auto Trait Implementations§
impl !RefUnwindSafe for TextAreaProps
impl !Send for TextAreaProps
impl !Sync for TextAreaProps
impl Unpin for TextAreaProps
impl !UnwindSafe for TextAreaProps
Blanket Implementations§
source§impl<T> IntoPropValue<Option<T>> for T
impl<T> IntoPropValue<Option<T>> for T
source§fn into_prop_value(self) -> Option<T>
fn into_prop_value(self) -> Option<T>
Convert
self to a value of a Properties struct.source§impl<T> IntoPropValue<T> for T
impl<T> IntoPropValue<T> for T
source§fn into_prop_value(self) -> T
fn into_prop_value(self) -> T
Convert
self to a value of a Properties struct.