Struct stm32wb_hci::vendor::stm32wb::event::HandleValuePair
source · pub struct HandleValuePair<'a> {
pub handle: AttributeHandle,
pub value: &'a [u8],
}Expand description
A single handle-value pair returned by the ATT Read by Type response.
Fields§
§handle: AttributeHandleAttribute handle
value: &'a [u8]Attribute value. The caller must interpret the value correctly, depending on the expected type of the attribute.
Trait Implementations§
Auto Trait Implementations§
impl<'a> RefUnwindSafe for HandleValuePair<'a>
impl<'a> Send for HandleValuePair<'a>
impl<'a> Sync for HandleValuePair<'a>
impl<'a> Unpin for HandleValuePair<'a>
impl<'a> UnwindSafe for HandleValuePair<'a>
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