[][src]Struct hap::service::input_source::InputSourceInner

pub struct InputSourceInner {
    pub configured_name: ConfiguredName,
    pub input_source_type: InputSourceType,
    pub is_configured: IsConfigured,
    pub current_visibility_state: CurrentVisibilityState,
    pub identifier: Option<Identifier>,
    pub input_device_type: Option<InputDeviceType>,
    pub target_visibility_state: Option<TargetVisibilityState>,
    pub name: Option<Name>,
    // some fields omitted
}

Inner type of the Input Source Service.

Fields

configured_name: ConfiguredName

Configured Name Characteristic.

input_source_type: InputSourceType

Input Source Type Characteristic.

is_configured: IsConfigured

Is Configured Characteristic.

current_visibility_state: CurrentVisibilityState

Current Visibility State Characteristic.

identifier: Option<Identifier>

Identifier Characteristic.

input_device_type: Option<InputDeviceType>

Input Device Type Characteristic.

target_visibility_state: Option<TargetVisibilityState>

Target Visibility State Characteristic.

name: Option<Name>

Name Characteristic.

Trait Implementations

impl HapService for InputSourceInner[src]

impl Default for InputSourceInner[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T