pub struct CreateSimulationApplicationVersionResponse {
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 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 simulation application.
Trait Implementations§
Source§impl Clone for CreateSimulationApplicationVersionResponse
impl Clone for CreateSimulationApplicationVersionResponse
Source§fn clone(&self) -> CreateSimulationApplicationVersionResponse
fn clone(&self) -> CreateSimulationApplicationVersionResponse
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 CreateSimulationApplicationVersionResponse
impl Default for CreateSimulationApplicationVersionResponse
Source§fn default() -> CreateSimulationApplicationVersionResponse
fn default() -> CreateSimulationApplicationVersionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateSimulationApplicationVersionResponse
impl<'de> Deserialize<'de> for CreateSimulationApplicationVersionResponse
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 CreateSimulationApplicationVersionResponse
impl PartialEq for CreateSimulationApplicationVersionResponse
Source§fn eq(&self, other: &CreateSimulationApplicationVersionResponse) -> bool
fn eq(&self, other: &CreateSimulationApplicationVersionResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateSimulationApplicationVersionResponse
Auto Trait Implementations§
impl Freeze for CreateSimulationApplicationVersionResponse
impl RefUnwindSafe for CreateSimulationApplicationVersionResponse
impl Send for CreateSimulationApplicationVersionResponse
impl Sync for CreateSimulationApplicationVersionResponse
impl Unpin for CreateSimulationApplicationVersionResponse
impl UnsafeUnpin for CreateSimulationApplicationVersionResponse
impl UnwindSafe for CreateSimulationApplicationVersionResponse
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