Struct aws_sdk_iottwinmaker::model::PropertyRequest
source · [−]#[non_exhaustive]pub struct PropertyRequest {
pub definition: Option<PropertyDefinitionRequest>,
pub value: Option<DataValue>,
pub update_type: Option<PropertyUpdateType>,
}Expand description
An object that sets information about a property.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.definition: Option<PropertyDefinitionRequest>An object that specifies information about a property.
value: Option<DataValue>The value of the property.
update_type: Option<PropertyUpdateType>The update type of the update property request.
Implementations
sourceimpl PropertyRequest
impl PropertyRequest
sourcepub fn definition(&self) -> Option<&PropertyDefinitionRequest>
pub fn definition(&self) -> Option<&PropertyDefinitionRequest>
An object that specifies information about a property.
sourcepub fn update_type(&self) -> Option<&PropertyUpdateType>
pub fn update_type(&self) -> Option<&PropertyUpdateType>
The update type of the update property request.
sourceimpl PropertyRequest
impl PropertyRequest
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PropertyRequest
Trait Implementations
sourceimpl Clone for PropertyRequest
impl Clone for PropertyRequest
sourcefn clone(&self) -> PropertyRequest
fn clone(&self) -> PropertyRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for PropertyRequest
impl Debug for PropertyRequest
sourceimpl PartialEq<PropertyRequest> for PropertyRequest
impl PartialEq<PropertyRequest> for PropertyRequest
sourcefn eq(&self, other: &PropertyRequest) -> bool
fn eq(&self, other: &PropertyRequest) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &PropertyRequest) -> bool
fn ne(&self, other: &PropertyRequest) -> bool
This method tests for !=.
impl StructuralPartialEq for PropertyRequest
Auto Trait Implementations
impl RefUnwindSafe for PropertyRequest
impl Send for PropertyRequest
impl Sync for PropertyRequest
impl Unpin for PropertyRequest
impl UnwindSafe for PropertyRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more