#[non_exhaustive]pub struct GetWorkerOutputBuilder { /* private fields */ }Expand description
A builder for GetWorkerOutput.
Implementations§
source§impl GetWorkerOutputBuilder
impl GetWorkerOutputBuilder
sourcepub fn created_at(self, input: DateTime) -> Self
pub fn created_at(self, input: DateTime) -> Self
Timestamp at which the resource was created.
sourcepub fn set_created_at(self, input: Option<DateTime>) -> Self
pub fn set_created_at(self, input: Option<DateTime>) -> Self
Timestamp at which the resource was created.
sourcepub fn get_created_at(&self) -> &Option<DateTime>
pub fn get_created_at(&self) -> &Option<DateTime>
Timestamp at which the resource was created.
sourcepub fn updated_at(self, input: DateTime) -> Self
pub fn updated_at(self, input: DateTime) -> Self
Timestamp at which the resource was last updated.
sourcepub fn set_updated_at(self, input: Option<DateTime>) -> Self
pub fn set_updated_at(self, input: Option<DateTime>) -> Self
Timestamp at which the resource was last updated.
sourcepub fn get_updated_at(&self) -> &Option<DateTime>
pub fn get_updated_at(&self) -> &Option<DateTime>
Timestamp at which the resource was last updated.
sourcepub fn additional_transient_properties(self, input: impl Into<String>) -> Self
pub fn additional_transient_properties(self, input: impl Into<String>) -> Self
JSON blob containing unstructured worker properties that are transient and may change during regular operation.
sourcepub fn set_additional_transient_properties(self, input: Option<String>) -> Self
pub fn set_additional_transient_properties(self, input: Option<String>) -> Self
JSON blob containing unstructured worker properties that are transient and may change during regular operation.
sourcepub fn get_additional_transient_properties(&self) -> &Option<String>
pub fn get_additional_transient_properties(&self) -> &Option<String>
JSON blob containing unstructured worker properties that are transient and may change during regular operation.
sourcepub fn additional_fixed_properties(self, input: impl Into<String>) -> Self
pub fn additional_fixed_properties(self, input: impl Into<String>) -> Self
JSON blob containing unstructured worker properties that are fixed and won’t change during regular operation.
sourcepub fn set_additional_fixed_properties(self, input: Option<String>) -> Self
pub fn set_additional_fixed_properties(self, input: Option<String>) -> Self
JSON blob containing unstructured worker properties that are fixed and won’t change during regular operation.
sourcepub fn get_additional_fixed_properties(&self) -> &Option<String>
pub fn get_additional_fixed_properties(&self) -> &Option<String>
JSON blob containing unstructured worker properties that are fixed and won’t change during regular operation.
sourcepub fn vendor_properties(self, input: VendorProperties) -> Self
pub fn vendor_properties(self, input: VendorProperties) -> Self
Properties of the worker that are provided by the vendor FMS.
sourcepub fn set_vendor_properties(self, input: Option<VendorProperties>) -> Self
pub fn set_vendor_properties(self, input: Option<VendorProperties>) -> Self
Properties of the worker that are provided by the vendor FMS.
sourcepub fn get_vendor_properties(&self) -> &Option<VendorProperties>
pub fn get_vendor_properties(&self) -> &Option<VendorProperties>
Properties of the worker that are provided by the vendor FMS.
sourcepub fn position(self, input: PositionCoordinates) -> Self
pub fn position(self, input: PositionCoordinates) -> Self
Supported coordinates for worker position.
sourcepub fn set_position(self, input: Option<PositionCoordinates>) -> Self
pub fn set_position(self, input: Option<PositionCoordinates>) -> Self
Supported coordinates for worker position.
sourcepub fn get_position(&self) -> &Option<PositionCoordinates>
pub fn get_position(&self) -> &Option<PositionCoordinates>
Supported coordinates for worker position.
sourcepub fn orientation(self, input: Orientation) -> Self
pub fn orientation(self, input: Orientation) -> Self
Worker orientation measured in units clockwise from north.
sourcepub fn set_orientation(self, input: Option<Orientation>) -> Self
pub fn set_orientation(self, input: Option<Orientation>) -> Self
Worker orientation measured in units clockwise from north.
sourcepub fn get_orientation(&self) -> &Option<Orientation>
pub fn get_orientation(&self) -> &Option<Orientation>
Worker orientation measured in units clockwise from north.
sourcepub fn build(self) -> GetWorkerOutput
pub fn build(self) -> GetWorkerOutput
Consumes the builder and constructs a GetWorkerOutput.
Trait Implementations§
source§impl Clone for GetWorkerOutputBuilder
impl Clone for GetWorkerOutputBuilder
source§fn clone(&self) -> GetWorkerOutputBuilder
fn clone(&self) -> GetWorkerOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetWorkerOutputBuilder
impl Debug for GetWorkerOutputBuilder
source§impl Default for GetWorkerOutputBuilder
impl Default for GetWorkerOutputBuilder
source§fn default() -> GetWorkerOutputBuilder
fn default() -> GetWorkerOutputBuilder
source§impl PartialEq<GetWorkerOutputBuilder> for GetWorkerOutputBuilder
impl PartialEq<GetWorkerOutputBuilder> for GetWorkerOutputBuilder
source§fn eq(&self, other: &GetWorkerOutputBuilder) -> bool
fn eq(&self, other: &GetWorkerOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.