Struct aws_sdk_workmail::model::BookingOptions
source · [−]#[non_exhaustive]pub struct BookingOptions {
pub auto_accept_requests: bool,
pub auto_decline_recurring_requests: bool,
pub auto_decline_conflicting_requests: bool,
}
Expand description
At least one delegate must be associated to the resource to disable automatic replies from the resource.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.auto_accept_requests: bool
The resource's ability to automatically reply to requests. If disabled, delegates must be associated to the resource.
auto_decline_recurring_requests: bool
The resource's ability to automatically decline any recurring requests.
auto_decline_conflicting_requests: bool
The resource's ability to automatically decline any conflicting requests.
Implementations
sourceimpl BookingOptions
impl BookingOptions
sourcepub fn auto_accept_requests(&self) -> bool
pub fn auto_accept_requests(&self) -> bool
The resource's ability to automatically reply to requests. If disabled, delegates must be associated to the resource.
sourcepub fn auto_decline_recurring_requests(&self) -> bool
pub fn auto_decline_recurring_requests(&self) -> bool
The resource's ability to automatically decline any recurring requests.
sourcepub fn auto_decline_conflicting_requests(&self) -> bool
pub fn auto_decline_conflicting_requests(&self) -> bool
The resource's ability to automatically decline any conflicting requests.
sourceimpl BookingOptions
impl BookingOptions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BookingOptions
Trait Implementations
sourceimpl Clone for BookingOptions
impl Clone for BookingOptions
sourcefn clone(&self) -> BookingOptions
fn clone(&self) -> BookingOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for BookingOptions
impl Debug for BookingOptions
sourceimpl PartialEq<BookingOptions> for BookingOptions
impl PartialEq<BookingOptions> for BookingOptions
sourcefn eq(&self, other: &BookingOptions) -> bool
fn eq(&self, other: &BookingOptions) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &BookingOptions) -> bool
fn ne(&self, other: &BookingOptions) -> bool
This method tests for !=
.
impl StructuralPartialEq for BookingOptions
Auto Trait Implementations
impl RefUnwindSafe for BookingOptions
impl Send for BookingOptions
impl Sync for BookingOptions
impl Unpin for BookingOptions
impl UnwindSafe for BookingOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more