#[non_exhaustive]pub struct RegisterSchemaVersionOutput {
pub schema_version_id: Option<String>,
pub version_number: i64,
pub status: Option<SchemaVersionStatus>,
/* 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.schema_version_id: Option<String>The unique ID that represents the version of this schema.
version_number: i64The version of this schema (for sync flow only, in case this is the first version).
status: Option<SchemaVersionStatus>The status of the schema version.
Implementations§
source§impl RegisterSchemaVersionOutput
impl RegisterSchemaVersionOutput
sourcepub fn schema_version_id(&self) -> Option<&str>
pub fn schema_version_id(&self) -> Option<&str>
The unique ID that represents the version of this schema.
sourcepub fn version_number(&self) -> i64
pub fn version_number(&self) -> i64
The version of this schema (for sync flow only, in case this is the first version).
sourcepub fn status(&self) -> Option<&SchemaVersionStatus>
pub fn status(&self) -> Option<&SchemaVersionStatus>
The status of the schema version.
source§impl RegisterSchemaVersionOutput
impl RegisterSchemaVersionOutput
sourcepub fn builder() -> RegisterSchemaVersionOutputBuilder
pub fn builder() -> RegisterSchemaVersionOutputBuilder
Creates a new builder-style object to manufacture RegisterSchemaVersionOutput.
Trait Implementations§
source§impl Clone for RegisterSchemaVersionOutput
impl Clone for RegisterSchemaVersionOutput
source§fn clone(&self) -> RegisterSchemaVersionOutput
fn clone(&self) -> RegisterSchemaVersionOutput
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 RegisterSchemaVersionOutput
impl Debug for RegisterSchemaVersionOutput
source§impl PartialEq<RegisterSchemaVersionOutput> for RegisterSchemaVersionOutput
impl PartialEq<RegisterSchemaVersionOutput> for RegisterSchemaVersionOutput
source§fn eq(&self, other: &RegisterSchemaVersionOutput) -> bool
fn eq(&self, other: &RegisterSchemaVersionOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for RegisterSchemaVersionOutput
impl RequestId for RegisterSchemaVersionOutput
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 RegisterSchemaVersionOutput
Auto Trait Implementations§
impl RefUnwindSafe for RegisterSchemaVersionOutput
impl Send for RegisterSchemaVersionOutput
impl Sync for RegisterSchemaVersionOutput
impl Unpin for RegisterSchemaVersionOutput
impl UnwindSafe for RegisterSchemaVersionOutput
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