#[non_exhaustive]pub struct RobotApplicationSummaryBuilder { /* private fields */ }Expand description
A builder for RobotApplicationSummary.
Implementations§
source§impl RobotApplicationSummaryBuilder
impl RobotApplicationSummaryBuilder
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the robot.
sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the robot.
sourcepub fn set_version(self, input: Option<String>) -> Self
pub fn set_version(self, input: Option<String>) -> Self
The version of the robot application.
sourcepub fn get_version(&self) -> &Option<String>
pub fn get_version(&self) -> &Option<String>
The version of the robot application.
sourcepub fn last_updated_at(self, input: DateTime) -> Self
pub fn last_updated_at(self, input: DateTime) -> Self
The time, in milliseconds since the epoch, when the robot application was last updated.
sourcepub fn set_last_updated_at(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_at(self, input: Option<DateTime>) -> Self
The time, in milliseconds since the epoch, when the robot application was last updated.
sourcepub fn get_last_updated_at(&self) -> &Option<DateTime>
pub fn get_last_updated_at(&self) -> &Option<DateTime>
The time, in milliseconds since the epoch, when the robot application was last updated.
sourcepub fn robot_software_suite(self, input: RobotSoftwareSuite) -> Self
pub fn robot_software_suite(self, input: RobotSoftwareSuite) -> Self
Information about a robot software suite (ROS distribution).
sourcepub fn set_robot_software_suite(self, input: Option<RobotSoftwareSuite>) -> Self
pub fn set_robot_software_suite(self, input: Option<RobotSoftwareSuite>) -> Self
Information about a robot software suite (ROS distribution).
sourcepub fn get_robot_software_suite(&self) -> &Option<RobotSoftwareSuite>
pub fn get_robot_software_suite(&self) -> &Option<RobotSoftwareSuite>
Information about a robot software suite (ROS distribution).
sourcepub fn build(self) -> RobotApplicationSummary
pub fn build(self) -> RobotApplicationSummary
Consumes the builder and constructs a RobotApplicationSummary.
Trait Implementations§
source§impl Clone for RobotApplicationSummaryBuilder
impl Clone for RobotApplicationSummaryBuilder
source§fn clone(&self) -> RobotApplicationSummaryBuilder
fn clone(&self) -> RobotApplicationSummaryBuilder
Returns a copy 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 RobotApplicationSummaryBuilder
impl Default for RobotApplicationSummaryBuilder
source§fn default() -> RobotApplicationSummaryBuilder
fn default() -> RobotApplicationSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for RobotApplicationSummaryBuilder
impl PartialEq for RobotApplicationSummaryBuilder
source§fn eq(&self, other: &RobotApplicationSummaryBuilder) -> bool
fn eq(&self, other: &RobotApplicationSummaryBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RobotApplicationSummaryBuilder
Auto Trait Implementations§
impl RefUnwindSafe for RobotApplicationSummaryBuilder
impl Send for RobotApplicationSummaryBuilder
impl Sync for RobotApplicationSummaryBuilder
impl Unpin for RobotApplicationSummaryBuilder
impl UnwindSafe for RobotApplicationSummaryBuilder
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