Struct cybergrape::hardware_message_decoder::UUDFEvent
source · pub struct UUDFEvent {
pub tag_id: u64,
pub rssi: i32,
pub angle_1: i32,
pub angle_2: i32,
reserved: i32,
pub channel: u32,
pub anchor_id: u64,
pub user_defined: String,
pub timestamp: u32,
pub sequence: u32,
}
Expand description
All of the information about a specific measurement between a particular tag/antenna pair.
Fields§
§tag_id: u64
The ID of the tag whose data is being reported
rssi: i32
Signal strength
angle_1: i32
Azimuth to tag
angle_2: i32
Elevation to tag
reserved: i32
u-blox won’t say what they use this for…maybe curing cancer.
channel: u32
TODO what does it mean “channel”, is this which Bluetooth channel? Completely unclear from the u-blox documentation.
anchor_id: u64
The ID of the antenna
user_defined: String
The user can configure this with AT+UDFCFG
tag 2
timestamp: u32
A timestamp in milliseconds since the listener block was powered on
sequence: u32
What event this is. The first reading is 1, then the next one is 2 and so on.
Trait Implementations§
source§impl PartialEq for UUDFEvent
impl PartialEq for UUDFEvent
impl Eq for UUDFEvent
impl StructuralPartialEq for UUDFEvent
Auto Trait Implementations§
impl Freeze for UUDFEvent
impl RefUnwindSafe for UUDFEvent
impl Send for UUDFEvent
impl Sync for UUDFEvent
impl Unpin for UUDFEvent
impl UnwindSafe for UUDFEvent
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more