Struct bluez_async::WriteOptions [−][src]
A set of options for a characteristic write operation.
Fields
offset: usizeThe starting offset of the write operation.
write_type: Option<WriteType>The type of write operation to use.
Note that a given characteristic may not support all different types of write operations;
you can check with
CharacteristicInfo.flags. The type of
write operation will also affect the maximum possible length of data which can be written in
a single operation.
Trait Implementations
impl Clone for WriteOptions[src]
fn clone(&self) -> WriteOptions[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for WriteOptions[src]
impl Debug for WriteOptions[src]
impl Default for WriteOptions[src]
fn default() -> WriteOptions[src]
impl Eq for WriteOptions[src]
impl Into<HashMap<String, Variant<Box<dyn RefArg + 'static, Global>>, RandomState>> for WriteOptions[src]
impl PartialEq<WriteOptions> for WriteOptions[src]
fn eq(&self, other: &WriteOptions) -> bool[src]
fn ne(&self, other: &WriteOptions) -> bool[src]
impl StructuralEq for WriteOptions[src]
impl StructuralPartialEq for WriteOptions[src]
Auto Trait Implementations
impl RefUnwindSafe for WriteOptions
impl Send for WriteOptions
impl Sync for WriteOptions
impl Unpin for WriteOptions
impl UnwindSafe for WriteOptions
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,