#[non_exhaustive]pub struct GetDirectoryLimitsOutput {
pub directory_limits: Option<DirectoryLimits>,
/* private fields */
}
Expand description
Contains the results of the GetDirectoryLimits
operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.directory_limits: Option<DirectoryLimits>
A DirectoryLimits
object that contains the directory limits for the current Region.
Implementations§
source§impl GetDirectoryLimitsOutput
impl GetDirectoryLimitsOutput
sourcepub fn directory_limits(&self) -> Option<&DirectoryLimits>
pub fn directory_limits(&self) -> Option<&DirectoryLimits>
A DirectoryLimits
object that contains the directory limits for the current Region.
source§impl GetDirectoryLimitsOutput
impl GetDirectoryLimitsOutput
sourcepub fn builder() -> GetDirectoryLimitsOutputBuilder
pub fn builder() -> GetDirectoryLimitsOutputBuilder
Creates a new builder-style object to manufacture GetDirectoryLimitsOutput
.
Trait Implementations§
source§impl Clone for GetDirectoryLimitsOutput
impl Clone for GetDirectoryLimitsOutput
source§fn clone(&self) -> GetDirectoryLimitsOutput
fn clone(&self) -> GetDirectoryLimitsOutput
Returns a copy 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 GetDirectoryLimitsOutput
impl Debug for GetDirectoryLimitsOutput
source§impl PartialEq<GetDirectoryLimitsOutput> for GetDirectoryLimitsOutput
impl PartialEq<GetDirectoryLimitsOutput> for GetDirectoryLimitsOutput
source§fn eq(&self, other: &GetDirectoryLimitsOutput) -> bool
fn eq(&self, other: &GetDirectoryLimitsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetDirectoryLimitsOutput
impl RequestId for GetDirectoryLimitsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetDirectoryLimitsOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetDirectoryLimitsOutput
impl Send for GetDirectoryLimitsOutput
impl Sync for GetDirectoryLimitsOutput
impl Unpin for GetDirectoryLimitsOutput
impl UnwindSafe for GetDirectoryLimitsOutput
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