Struct stm32wb_hci::vendor::stm32wb::command::gatt::WriteRequest
source · pub struct WriteRequest<'a> {
pub conn_handle: ConnectionHandle,
pub attribute_handle: AttributeHandle,
pub offset: usize,
pub value: &'a [u8],
}Expand description
Parameters for the Prepare Write Request command.
Fields§
§conn_handle: ConnectionHandleConnection handle for which the command is given.
attribute_handle: AttributeHandleHandle of the attribute whose value has to be written
offset: usizeThe offset at which value has to be written
value: &'a [u8]Value of the attribute to be written
Auto Trait Implementations§
impl<'a> RefUnwindSafe for WriteRequest<'a>
impl<'a> Send for WriteRequest<'a>
impl<'a> Sync for WriteRequest<'a>
impl<'a> Unpin for WriteRequest<'a>
impl<'a> UnwindSafe for WriteRequest<'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