pub struct NativeSelectProps {
pub name: String,
pub id: String,
pub options: Vec<NativeOption>,
pub selected: Option<String>,
pub disabled: bool,
pub placeholder: Option<String>,
}Fields§
§name: String§id: String§options: Vec<NativeOption>§selected: Option<String>§disabled: bool§placeholder: Option<String>Auto Trait Implementations§
impl Freeze for NativeSelectProps
impl RefUnwindSafe for NativeSelectProps
impl Send for NativeSelectProps
impl Sync for NativeSelectProps
impl Unpin for NativeSelectProps
impl UnsafeUnpin for NativeSelectProps
impl UnwindSafe for NativeSelectProps
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more