#[non_exhaustive]pub struct GetDataCatalogOutput {
pub data_catalog: Option<DataCatalog>,
/* private fields */
}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.data_catalog: Option<DataCatalog>The data catalog returned.
Implementations§
source§impl GetDataCatalogOutput
impl GetDataCatalogOutput
sourcepub fn data_catalog(&self) -> Option<&DataCatalog>
pub fn data_catalog(&self) -> Option<&DataCatalog>
The data catalog returned.
source§impl GetDataCatalogOutput
impl GetDataCatalogOutput
sourcepub fn builder() -> GetDataCatalogOutputBuilder
pub fn builder() -> GetDataCatalogOutputBuilder
Creates a new builder-style object to manufacture GetDataCatalogOutput.
Trait Implementations§
source§impl Clone for GetDataCatalogOutput
impl Clone for GetDataCatalogOutput
source§fn clone(&self) -> GetDataCatalogOutput
fn clone(&self) -> GetDataCatalogOutput
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 GetDataCatalogOutput
impl Debug for GetDataCatalogOutput
source§impl PartialEq<GetDataCatalogOutput> for GetDataCatalogOutput
impl PartialEq<GetDataCatalogOutput> for GetDataCatalogOutput
source§fn eq(&self, other: &GetDataCatalogOutput) -> bool
fn eq(&self, other: &GetDataCatalogOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for GetDataCatalogOutput
impl RequestId for GetDataCatalogOutput
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 GetDataCatalogOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetDataCatalogOutput
impl Send for GetDataCatalogOutput
impl Sync for GetDataCatalogOutput
impl Unpin for GetDataCatalogOutput
impl UnwindSafe for GetDataCatalogOutput
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