pub struct UpdateSimulationApplicationResponse {
pub arn: Option<String>,
pub last_updated_at: Option<f64>,
pub name: Option<String>,
pub rendering_engine: Option<RenderingEngine>,
pub revision_id: Option<String>,
pub robot_software_suite: Option<RobotSoftwareSuite>,
pub simulation_software_suite: Option<SimulationSoftwareSuite>,
pub sources: Option<Vec<Source>>,
pub version: Option<String>,
}Fields§
§arn: Option<String>The Amazon Resource Name (ARN) of the updated simulation application.
last_updated_at: Option<f64>The time, in milliseconds since the epoch, when the simulation application was last updated.
name: Option<String>The name of the simulation application.
rendering_engine: Option<RenderingEngine>The rendering engine for the simulation application.
revision_id: Option<String>The revision id of the simulation application.
robot_software_suite: Option<RobotSoftwareSuite>Information about the robot software suite (ROS distribution).
simulation_software_suite: Option<SimulationSoftwareSuite>The simulation software suite used by the simulation application.
sources: Option<Vec<Source>>The sources of the simulation application.
version: Option<String>The version of the robot application.
Trait Implementations§
Source§impl Clone for UpdateSimulationApplicationResponse
impl Clone for UpdateSimulationApplicationResponse
Source§fn clone(&self) -> UpdateSimulationApplicationResponse
fn clone(&self) -> UpdateSimulationApplicationResponse
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 UpdateSimulationApplicationResponse
impl Default for UpdateSimulationApplicationResponse
Source§fn default() -> UpdateSimulationApplicationResponse
fn default() -> UpdateSimulationApplicationResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateSimulationApplicationResponse
impl<'de> Deserialize<'de> for UpdateSimulationApplicationResponse
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 UpdateSimulationApplicationResponse
impl PartialEq for UpdateSimulationApplicationResponse
Source§fn eq(&self, other: &UpdateSimulationApplicationResponse) -> bool
fn eq(&self, other: &UpdateSimulationApplicationResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateSimulationApplicationResponse
Auto Trait Implementations§
impl Freeze for UpdateSimulationApplicationResponse
impl RefUnwindSafe for UpdateSimulationApplicationResponse
impl Send for UpdateSimulationApplicationResponse
impl Sync for UpdateSimulationApplicationResponse
impl Unpin for UpdateSimulationApplicationResponse
impl UnwindSafe for UpdateSimulationApplicationResponse
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