pub struct AddDescriptorParams {
pub characteristic_id: String,
pub descriptor_uuid: String,
}Expand description
Adds a descriptor with |descriptorUuid| to the characteristic respresented by |characteristicId|. addDescriptor
Fields§
§characteristic_id: String§descriptor_uuid: StringImplementations§
Trait Implementations§
Source§impl Clone for AddDescriptorParams
impl Clone for AddDescriptorParams
Source§fn clone(&self) -> AddDescriptorParams
fn clone(&self) -> AddDescriptorParams
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 Debug for AddDescriptorParams
impl Debug for AddDescriptorParams
Source§impl<'de> Deserialize<'de> for AddDescriptorParams
impl<'de> Deserialize<'de> for AddDescriptorParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AddDescriptorParams
impl PartialEq for AddDescriptorParams
Source§impl Serialize for AddDescriptorParams
impl Serialize for AddDescriptorParams
impl StructuralPartialEq for AddDescriptorParams
Auto Trait Implementations§
impl Freeze for AddDescriptorParams
impl RefUnwindSafe for AddDescriptorParams
impl Send for AddDescriptorParams
impl Sync for AddDescriptorParams
impl Unpin for AddDescriptorParams
impl UnsafeUnpin for AddDescriptorParams
impl UnwindSafe for AddDescriptorParams
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