pub enum AdvertisementDataError {
TooLong,
}
Expand description
Error encoding advertisement data.
Variants§
TooLong
Advertisement data too long for buffer.
Trait Implementations§
Source§impl Clone for AdvertisementDataError
impl Clone for AdvertisementDataError
Source§fn clone(&self) -> AdvertisementDataError
fn clone(&self) -> AdvertisementDataError
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AdvertisementDataError
impl Debug for AdvertisementDataError
Source§impl Format for AdvertisementDataError
impl Format for AdvertisementDataError
Source§impl PartialEq for AdvertisementDataError
impl PartialEq for AdvertisementDataError
Source§fn eq(&self, other: &AdvertisementDataError) -> bool
fn eq(&self, other: &AdvertisementDataError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for AdvertisementDataError
impl StructuralPartialEq for AdvertisementDataError
Auto Trait Implementations§
impl Freeze for AdvertisementDataError
impl RefUnwindSafe for AdvertisementDataError
impl Send for AdvertisementDataError
impl Sync for AdvertisementDataError
impl Unpin for AdvertisementDataError
impl UnwindSafe for AdvertisementDataError
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