pub struct GetSchemaCreationStatusResponse {
pub details: Option<String>,
pub status: Option<String>,
}
Fields§
§details: Option<String>
Detailed information about the status of the schema creation operation.
status: Option<String>
The current state of the schema (PROCESSING, FAILED, SUCCESS, or NOT_APPLICABLE). When the schema is in the ACTIVE state, you can add data.
Trait Implementations§
Source§impl Clone for GetSchemaCreationStatusResponse
impl Clone for GetSchemaCreationStatusResponse
Source§fn clone(&self) -> GetSchemaCreationStatusResponse
fn clone(&self) -> GetSchemaCreationStatusResponse
Returns a duplicate 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 Default for GetSchemaCreationStatusResponse
impl Default for GetSchemaCreationStatusResponse
Source§fn default() -> GetSchemaCreationStatusResponse
fn default() -> GetSchemaCreationStatusResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetSchemaCreationStatusResponse
impl<'de> Deserialize<'de> for GetSchemaCreationStatusResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetSchemaCreationStatusResponse
impl PartialEq for GetSchemaCreationStatusResponse
Source§fn eq(&self, other: &GetSchemaCreationStatusResponse) -> bool
fn eq(&self, other: &GetSchemaCreationStatusResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetSchemaCreationStatusResponse
Auto Trait Implementations§
impl Freeze for GetSchemaCreationStatusResponse
impl RefUnwindSafe for GetSchemaCreationStatusResponse
impl Send for GetSchemaCreationStatusResponse
impl Sync for GetSchemaCreationStatusResponse
impl Unpin for GetSchemaCreationStatusResponse
impl UnwindSafe for GetSchemaCreationStatusResponse
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