pub struct AddDescriptorParams {
pub characteristicId: String,
pub descriptorUuid: String,
}Expand description
Adds a descriptor with |descriptorUuid| to the characteristic respresented by |characteristicId|.
Fields§
§characteristicId: String§descriptorUuid: StringTrait 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 Default for AddDescriptorParams
impl Default for AddDescriptorParams
Source§fn default() -> AddDescriptorParams
fn default() -> AddDescriptorParams
Returns the “default value” for a type. Read more
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
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