pub struct DeploySystemInstanceResponse {
pub greengrass_deployment_id: Option<String>,
pub summary: SystemInstanceSummary,
}
Fields§
§greengrass_deployment_id: Option<String>
The ID of the Greengrass deployment used to deploy the system instance.
summary: SystemInstanceSummary
An object that contains summary information about a system instance that was deployed.
Trait Implementations§
Source§impl Clone for DeploySystemInstanceResponse
impl Clone for DeploySystemInstanceResponse
Source§fn clone(&self) -> DeploySystemInstanceResponse
fn clone(&self) -> DeploySystemInstanceResponse
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 Debug for DeploySystemInstanceResponse
impl Debug for DeploySystemInstanceResponse
Source§impl Default for DeploySystemInstanceResponse
impl Default for DeploySystemInstanceResponse
Source§fn default() -> DeploySystemInstanceResponse
fn default() -> DeploySystemInstanceResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeploySystemInstanceResponse
impl<'de> Deserialize<'de> for DeploySystemInstanceResponse
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 DeploySystemInstanceResponse
impl PartialEq for DeploySystemInstanceResponse
Source§fn eq(&self, other: &DeploySystemInstanceResponse) -> bool
fn eq(&self, other: &DeploySystemInstanceResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeploySystemInstanceResponse
Auto Trait Implementations§
impl Freeze for DeploySystemInstanceResponse
impl RefUnwindSafe for DeploySystemInstanceResponse
impl Send for DeploySystemInstanceResponse
impl Sync for DeploySystemInstanceResponse
impl Unpin for DeploySystemInstanceResponse
impl UnwindSafe for DeploySystemInstanceResponse
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