#[non_exhaustive]pub struct GetBackendApiModelsOutput {
pub models: Option<String>,
pub status: Option<Status>,
pub model_introspection_schema: Option<String>,
/* 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.models: Option<String>
Stringified JSON of the datastore model.
status: Option<Status>
The current status of the request.
model_introspection_schema: Option<String>
Stringified JSON of the model introspection schema for an existing backend API resource.
Implementations§
source§impl GetBackendApiModelsOutput
impl GetBackendApiModelsOutput
sourcepub fn model_introspection_schema(&self) -> Option<&str>
pub fn model_introspection_schema(&self) -> Option<&str>
Stringified JSON of the model introspection schema for an existing backend API resource.
source§impl GetBackendApiModelsOutput
impl GetBackendApiModelsOutput
sourcepub fn builder() -> GetBackendApiModelsOutputBuilder
pub fn builder() -> GetBackendApiModelsOutputBuilder
Creates a new builder-style object to manufacture GetBackendApiModelsOutput
.
Trait Implementations§
source§impl Clone for GetBackendApiModelsOutput
impl Clone for GetBackendApiModelsOutput
source§fn clone(&self) -> GetBackendApiModelsOutput
fn clone(&self) -> GetBackendApiModelsOutput
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 GetBackendApiModelsOutput
impl Debug for GetBackendApiModelsOutput
source§impl PartialEq for GetBackendApiModelsOutput
impl PartialEq for GetBackendApiModelsOutput
source§fn eq(&self, other: &GetBackendApiModelsOutput) -> bool
fn eq(&self, other: &GetBackendApiModelsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetBackendApiModelsOutput
impl RequestId for GetBackendApiModelsOutput
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 GetBackendApiModelsOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetBackendApiModelsOutput
impl Send for GetBackendApiModelsOutput
impl Sync for GetBackendApiModelsOutput
impl Unpin for GetBackendApiModelsOutput
impl UnwindSafe for GetBackendApiModelsOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.