[][src]Struct hap::service::accessory_information::AccessoryInformationInner

pub struct AccessoryInformationInner {
    pub identify: Identify,
    pub manufacturer: Manufacturer,
    pub model: Model,
    pub name: Name,
    pub serial_number: SerialNumber,
    pub firmware_revision: FirmwareRevision,
    pub hardware_revision: Option<HardwareRevision>,
    pub accessory_flags: Option<AccessoryFlags>,
    // some fields omitted
}

Inner type of the Accessory Information Service.

Fields

identify: Identify

Identify Characteristic.

manufacturer: Manufacturer

Manufacturer Characteristic.

model: Model

Model Characteristic.

name: Name

Name Characteristic.

serial_number: SerialNumber

Serial Number Characteristic.

firmware_revision: FirmwareRevision

Firmware Revision Characteristic.

hardware_revision: Option<HardwareRevision>

Hardware Revision Characteristic.

accessory_flags: Option<AccessoryFlags>

Accessory Flags Characteristic.

Trait Implementations

impl HapService for AccessoryInformationInner[src]

impl Default for AccessoryInformationInner[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Erased for T