pub enum CalendarProp {
Show 14 variants
CalendarColor(Option<String>),
CalendarDescription(Option<String>),
CalendarTimezone(Option<String>),
TimezoneServiceSet(HrefElement),
CalendarTimezoneId(Option<String>),
CalendarOrder(Option<i64>),
SupportedCalendarComponentSet(SupportedCalendarComponentSet),
SupportedCalendarData(SupportedCalendarData),
SupportedCollationSet(SupportedCollationSet),
MaxResourceSize(i64),
SupportedReportSet(SupportedReportSet<ReportMethod>),
Source(Option<HrefElement>),
MinDateTime(String),
MaxDateTime(String),
}Variants§
CalendarColor(Option<String>)
CalendarDescription(Option<String>)
CalendarTimezone(Option<String>)
TimezoneServiceSet(HrefElement)
CalendarTimezoneId(Option<String>)
CalendarOrder(Option<i64>)
SupportedCalendarComponentSet(SupportedCalendarComponentSet)
SupportedCalendarData(SupportedCalendarData)
SupportedCollationSet(SupportedCollationSet)
MaxResourceSize(i64)
SupportedReportSet(SupportedReportSet<ReportMethod>)
Source(Option<HrefElement>)
MinDateTime(String)
MaxDateTime(String)
Trait Implementations§
Source§impl Clone for CalendarProp
impl Clone for CalendarProp
Source§fn clone(&self) -> CalendarProp
fn clone(&self) -> CalendarProp
Returns a duplicate 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 EnumVariants for CalendarProp
impl EnumVariants for CalendarProp
Source§impl From<CalendarProp> for CalendarPropName
impl From<CalendarProp> for CalendarPropName
Source§fn from(val: CalendarProp) -> Self
fn from(val: CalendarProp) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CalendarProp
impl PartialEq for CalendarProp
Source§impl PropName for CalendarProp
impl PropName for CalendarProp
type Names = CalendarPropName
Source§impl XmlDeserialize for CalendarProp
impl XmlDeserialize for CalendarProp
Source§impl XmlSerialize for CalendarProp
impl XmlSerialize for CalendarProp
impl Eq for CalendarProp
impl StructuralPartialEq for CalendarProp
Auto Trait Implementations§
impl Freeze for CalendarProp
impl RefUnwindSafe for CalendarProp
impl Send for CalendarProp
impl Sync for CalendarProp
impl Unpin for CalendarProp
impl UnwindSafe for CalendarProp
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 more