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