pub enum VacationResponseProperty {
Id,
IsEnabled,
FromDate,
ToDate,
Subject,
TextBody,
HtmlBody,
}Expand description
Property selector for crate::VacationResponse /get and /set.
Variants§
Id
The id property (RFC 8621 §8).
IsEnabled
The isEnabled property (RFC 8621 §8).
FromDate
The fromDate property (RFC 8621 §8).
ToDate
The toDate property (RFC 8621 §8).
Subject
The subject property (RFC 8621 §8).
TextBody
The textBody property (RFC 8621 §8).
HtmlBody
The htmlBody property (RFC 8621 §8).
Trait Implementations§
Source§impl Clone for VacationResponseProperty
impl Clone for VacationResponseProperty
Source§fn clone(&self) -> VacationResponseProperty
fn clone(&self) -> VacationResponseProperty
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VacationResponseProperty
impl Debug for VacationResponseProperty
impl Eq for VacationResponseProperty
Source§impl Hash for VacationResponseProperty
impl Hash for VacationResponseProperty
Source§impl PartialEq for VacationResponseProperty
impl PartialEq for VacationResponseProperty
Source§fn eq(&self, other: &VacationResponseProperty) -> bool
fn eq(&self, other: &VacationResponseProperty) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VacationResponseProperty
Auto Trait Implementations§
impl Freeze for VacationResponseProperty
impl RefUnwindSafe for VacationResponseProperty
impl Send for VacationResponseProperty
impl Sync for VacationResponseProperty
impl Unpin for VacationResponseProperty
impl UnsafeUnpin for VacationResponseProperty
impl UnwindSafe for VacationResponseProperty
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