pub enum NotifyStream {
Battery,
HeartRate,
MeasurementCP,
MeasurementData,
}Expand description
A list of stream types that can be subscribed to
Variants§
Battery
Receive battery updates
HeartRate
Receive heart rate updates
MeasurementCP
Receive updates from the control points, only for use within the library
MeasurementData
Receive updates from the PMD data stream (acceleration or ecg)
Trait Implementations§
Source§impl From<NotifyStream> for Uuid
impl From<NotifyStream> for Uuid
Source§fn from(item: NotifyStream) -> Self
fn from(item: NotifyStream) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NotifyStream
impl RefUnwindSafe for NotifyStream
impl Send for NotifyStream
impl Sync for NotifyStream
impl Unpin for NotifyStream
impl UnwindSafe for NotifyStream
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