pub struct ConfigResponse {
pub timestamp: f64,
pub data: Vec<u8>,
}Expand description
A config response received from the EEG config characteristic.
Fields§
§timestamp: f64Wall-clock timestamp in milliseconds since Unix epoch.
data: Vec<u8>Raw response bytes.
Trait Implementations§
Source§impl Clone for ConfigResponse
impl Clone for ConfigResponse
Source§fn clone(&self) -> ConfigResponse
fn clone(&self) -> ConfigResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ConfigResponse
impl RefUnwindSafe for ConfigResponse
impl Send for ConfigResponse
impl Sync for ConfigResponse
impl Unpin for ConfigResponse
impl UnsafeUnpin for ConfigResponse
impl UnwindSafe for ConfigResponse
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