pub struct DeviceInfo {
pub version: String,
pub start_date: Option<DateTime<Utc>>,
pub device_class: String,
pub communication_type: String,
pub device_id: String,
pub software_version: String,
pub firmware_version: String,
pub os: String,
pub sdcard_filename: String,
pub additional_channel: String,
}
Expand description
Struct holding device information for EEG data.
Fields§
§version: String
§start_date: Option<DateTime<Utc>>
§device_class: String
§communication_type: String
§device_id: String
§software_version: String
§firmware_version: String
§os: String
§sdcard_filename: String
§additional_channel: String
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DeviceInfo
impl RefUnwindSafe for DeviceInfo
impl Send for DeviceInfo
impl Sync for DeviceInfo
impl Unpin for DeviceInfo
impl UnwindSafe for DeviceInfo
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