eye_hal/
device.rs

1#[derive(Clone, Debug)]
2/// Device description
3pub struct Description {
4    /// Unique resource identifier
5    pub uri: String,
6    /// Human-readable product name
7    pub product: String,
8}