pub struct RegistrationInfoDevice {
pub id: String,
pub name: Option<String>,
pub size: DeviceSize,
pub _type: Option<DeviceType>,
}Expand description
Information about a connected device.
Fields§
§id: StringThe ID of the specific device.
name: Option<String>The user-specified name of the device.
Added in Stream Deck software version 4.3.
size: DeviceSizeThe size of the device.
_type: Option<DeviceType>The type of the device.
Trait Implementations§
source§impl<'de> Deserialize<'de> for RegistrationInfoDevice
impl<'de> Deserialize<'de> for RegistrationInfoDevice
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more