pub struct BookingOptions {
pub auto_accept_requests: Option<bool>,
pub auto_decline_conflicting_requests: Option<bool>,
pub auto_decline_recurring_requests: Option<bool>,
}Expand description
At least one delegate must be associated to the resource to disable automatic replies from the resource.
Fields§
§auto_accept_requests: Option<bool>The resource's ability to automatically reply to requests. If disabled, delegates must be associated to the resource.
auto_decline_conflicting_requests: Option<bool>The resource's ability to automatically decline any conflicting requests.
auto_decline_recurring_requests: Option<bool>The resource's ability to automatically decline any recurring requests.
Trait Implementations§
Source§impl Clone for BookingOptions
impl Clone for BookingOptions
Source§fn clone(&self) -> BookingOptions
fn clone(&self) -> BookingOptions
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 Debug for BookingOptions
impl Debug for BookingOptions
Source§impl Default for BookingOptions
impl Default for BookingOptions
Source§fn default() -> BookingOptions
fn default() -> BookingOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BookingOptions
impl<'de> Deserialize<'de> for BookingOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BookingOptions
impl PartialEq for BookingOptions
Source§impl Serialize for BookingOptions
impl Serialize for BookingOptions
impl StructuralPartialEq for BookingOptions
Auto Trait Implementations§
impl Freeze for BookingOptions
impl RefUnwindSafe for BookingOptions
impl Send for BookingOptions
impl Sync for BookingOptions
impl Unpin for BookingOptions
impl UnwindSafe for BookingOptions
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