pub struct DatabasesGetMigrationStatusResponse {
pub created_at: Option<String>,
pub id: Option<String>,
pub status: Option<DatabasesGetMigrationStatusResponseStatus>,
}Expand description
DatabasesGetMigrationStatusResponse
JSON schema
{
"type": "object",
"properties": {
"created_at": {
"description": "The time the migration was initiated, in ISO 8601 format.",
"examples": [
"2020-10-29T15:57:38Z"
],
"type": "string"
},
"id": {
"description": "The ID of the most recent migration.",
"examples": [
"77b28fc8-19ff-11eb-8c9c-c68e24557488"
],
"type": "string"
},
"status": {
"description": "The current status of the migration.",
"examples": [
"running"
],
"type": "string",
"enum": [
"running",
"syncing",
"canceled",
"error",
"done"
]
}
}
}Fields§
§created_at: Option<String>The time the migration was initiated, in ISO 8601 format.
id: Option<String>The ID of the most recent migration.
status: Option<DatabasesGetMigrationStatusResponseStatus>The current status of the migration.
Trait Implementations§
Source§impl Clone for DatabasesGetMigrationStatusResponse
impl Clone for DatabasesGetMigrationStatusResponse
Source§fn clone(&self) -> DatabasesGetMigrationStatusResponse
fn clone(&self) -> DatabasesGetMigrationStatusResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for DatabasesGetMigrationStatusResponse
impl<'de> Deserialize<'de> for DatabasesGetMigrationStatusResponse
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 From<&DatabasesGetMigrationStatusResponse> for DatabasesGetMigrationStatusResponse
impl From<&DatabasesGetMigrationStatusResponse> for DatabasesGetMigrationStatusResponse
Source§fn from(value: &DatabasesGetMigrationStatusResponse) -> Self
fn from(value: &DatabasesGetMigrationStatusResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DatabasesGetMigrationStatusResponse
impl RefUnwindSafe for DatabasesGetMigrationStatusResponse
impl Send for DatabasesGetMigrationStatusResponse
impl Sync for DatabasesGetMigrationStatusResponse
impl Unpin for DatabasesGetMigrationStatusResponse
impl UnsafeUnpin for DatabasesGetMigrationStatusResponse
impl UnwindSafe for DatabasesGetMigrationStatusResponse
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