#[non_exhaustive]pub struct UpdateWorkerInputBuilder { /* private fields */ }Expand description
A builder for UpdateWorkerInput.
Implementations§
source§impl UpdateWorkerInputBuilder
impl UpdateWorkerInputBuilder
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) -> Result<UpdateWorkerInput, BuildError>
pub fn build(self) -> Result<UpdateWorkerInput, BuildError>
Consumes the builder and constructs a UpdateWorkerInput.
source§impl UpdateWorkerInputBuilder
impl UpdateWorkerInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateWorkerOutput, SdkError<UpdateWorkerError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateWorkerOutput, SdkError<UpdateWorkerError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateWorkerInputBuilder
impl Clone for UpdateWorkerInputBuilder
source§fn clone(&self) -> UpdateWorkerInputBuilder
fn clone(&self) -> UpdateWorkerInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateWorkerInputBuilder
impl Debug for UpdateWorkerInputBuilder
source§impl Default for UpdateWorkerInputBuilder
impl Default for UpdateWorkerInputBuilder
source§fn default() -> UpdateWorkerInputBuilder
fn default() -> UpdateWorkerInputBuilder
source§impl PartialEq<UpdateWorkerInputBuilder> for UpdateWorkerInputBuilder
impl PartialEq<UpdateWorkerInputBuilder> for UpdateWorkerInputBuilder
source§fn eq(&self, other: &UpdateWorkerInputBuilder) -> bool
fn eq(&self, other: &UpdateWorkerInputBuilder) -> bool
self and other values to be equal, and is used
by ==.