pub struct DissociateEntityFromThingRequest {
pub entity_type: String,
pub thing_name: String,
}
Fields§
§entity_type: String
The entity type from which to disassociate the thing.
thing_name: String
The name of the thing to disassociate.
Trait Implementations§
Source§impl Clone for DissociateEntityFromThingRequest
impl Clone for DissociateEntityFromThingRequest
Source§fn clone(&self) -> DissociateEntityFromThingRequest
fn clone(&self) -> DissociateEntityFromThingRequest
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 DissociateEntityFromThingRequest
impl Default for DissociateEntityFromThingRequest
Source§fn default() -> DissociateEntityFromThingRequest
fn default() -> DissociateEntityFromThingRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DissociateEntityFromThingRequest
impl PartialEq for DissociateEntityFromThingRequest
Source§fn eq(&self, other: &DissociateEntityFromThingRequest) -> bool
fn eq(&self, other: &DissociateEntityFromThingRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DissociateEntityFromThingRequest
Auto Trait Implementations§
impl Freeze for DissociateEntityFromThingRequest
impl RefUnwindSafe for DissociateEntityFromThingRequest
impl Send for DissociateEntityFromThingRequest
impl Sync for DissociateEntityFromThingRequest
impl Unpin for DissociateEntityFromThingRequest
impl UnwindSafe for DissociateEntityFromThingRequest
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