pub struct DatePickerProperties {
pub disabled: bool,
pub onchange: Callback<NaiveDate>,
pub placeholder: String,
pub rangestart: Option<NaiveDate>,
pub value: Option<NaiveDate>,
pub weekday_start: Weekday,
}Expand description
Properties for DatePicker.
Fields§
§disabled: boolDisable the component
onchange: Callback<NaiveDate>The change callback
placeholder: StringThe placeholder string
rangestart: Option<NaiveDate>§value: Option<NaiveDate>The currently selected value
weekday_start: WeekdayThe day to start the week with
Trait Implementations§
Source§impl Clone for DatePickerProperties
impl Clone for DatePickerProperties
Source§fn clone(&self) -> DatePickerProperties
fn clone(&self) -> DatePickerProperties
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for DatePickerProperties
impl PartialEq for DatePickerProperties
Source§impl Properties for DatePickerProperties
impl Properties for DatePickerProperties
impl StructuralPartialEq for DatePickerProperties
Auto Trait Implementations§
impl Freeze for DatePickerProperties
impl !RefUnwindSafe for DatePickerProperties
impl !Send for DatePickerProperties
impl !Sync for DatePickerProperties
impl Unpin for DatePickerProperties
impl !UnwindSafe for DatePickerProperties
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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.