pub struct UseCalendarOptions {
pub initial_date: MaybeRwSignal<Option<NaiveDate>>,
pub first_day_of_the_week: Signal<usize>,
}
Expand description
Options for use_calendar_with_options
.
Fields§
§initial_date: MaybeRwSignal<Option<NaiveDate>>
Date being used to initialize the calendar month to be displayed.
Optional chrono::NaiveDate
. Defaults to chrono::Local::now()
.
first_day_of_the_week: Signal<usize>
First day of the week as a number from 0 to 6. Defaults to 0 (Monday).
Implementations§
Source§impl UseCalendarOptions
impl UseCalendarOptions
Sourcepub fn initial_date(
self,
value: impl Into<MaybeRwSignal<Option<NaiveDate>>>,
) -> Self
pub fn initial_date( self, value: impl Into<MaybeRwSignal<Option<NaiveDate>>>, ) -> Self
Date being used to initialize the calendar month to be displayed.
Optional chrono::NaiveDate
. Defaults to chrono::Local::now()
.
Sourcepub fn first_day_of_the_week(self, value: impl Into<Signal<usize>>) -> Self
pub fn first_day_of_the_week(self, value: impl Into<Signal<usize>>) -> Self
First day of the week as a number from 0 to 6. Defaults to 0 (Monday).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UseCalendarOptions
impl RefUnwindSafe for UseCalendarOptions
impl Send for UseCalendarOptions
impl Sync for UseCalendarOptions
impl Unpin for UseCalendarOptions
impl UnwindSafe for UseCalendarOptions
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<El, T, Marker> IntoElementMaybeSignal<T, Marker> for Elwhere
El: IntoElementMaybeSignalType<T, Marker>,
Marker: ?Sized,
impl<El, T, Marker> IntoElementMaybeSignal<T, Marker> for Elwhere
El: IntoElementMaybeSignalType<T, Marker>,
Marker: ?Sized,
fn into_element_maybe_signal(self) -> ElementMaybeSignal<T>
Source§impl<T, Js> IntoElementMaybeSignalType<T, Element> for Js
impl<T, Js> IntoElementMaybeSignalType<T, Element> for Js
fn into_element_maybe_signal_type(self) -> ElementMaybeSignalType<T>
Source§impl<El, T, Marker> IntoElementsMaybeSignal<T, Marker> for Elwhere
El: IntoElementsMaybeSignalType<T, Marker>,
Marker: ?Sized,
impl<El, T, Marker> IntoElementsMaybeSignal<T, Marker> for Elwhere
El: IntoElementsMaybeSignalType<T, Marker>,
Marker: ?Sized,
fn into_elements_maybe_signal(self) -> ElementsMaybeSignal<T>
Source§impl<T, Js> IntoElementsMaybeSignalType<T, Element> for Js
impl<T, Js> IntoElementsMaybeSignalType<T, Element> for Js
fn into_elements_maybe_signal_type(self) -> ElementsMaybeSignalType<T>
Source§impl<T> StorageAccess<T> for T
impl<T> StorageAccess<T> for T
Source§fn as_borrowed(&self) -> &T
fn as_borrowed(&self) -> &T
Borrows the value.
Source§fn into_taken(self) -> T
fn into_taken(self) -> T
Takes the value.