pub struct StackImportResponse {
pub deployment_id: String,
pub deployment_token: Option<String>,
pub stack_settings: StackSettings,
pub stack_state: StackState,
}Expand description
Response body returned after a stack import.
Fields§
§deployment_id: StringDeployment created.
deployment_token: Option<String>Deployment bearer token for the imported deployment, when available.
stack_settings: StackSettingsStack settings persisted for the deployment.
stack_state: StackStateFully populated imported stack state.
Trait Implementations§
Source§impl Clone for StackImportResponse
impl Clone for StackImportResponse
Source§fn clone(&self) -> StackImportResponse
fn clone(&self) -> StackImportResponse
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 Debug for StackImportResponse
impl Debug for StackImportResponse
Source§impl<'de> Deserialize<'de> for StackImportResponse
impl<'de> Deserialize<'de> for StackImportResponse
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
Auto Trait Implementations§
impl !RefUnwindSafe for StackImportResponse
impl !UnwindSafe for StackImportResponse
impl Freeze for StackImportResponse
impl Send for StackImportResponse
impl Sync for StackImportResponse
impl Unpin for StackImportResponse
impl UnsafeUnpin for StackImportResponse
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