[][src]Struct hap::service::window::WindowInner

pub struct WindowInner {
    pub current_position: CurrentPosition,
    pub target_position: TargetPosition,
    pub position_state: PositionState,
    pub hold_position: Option<HoldPosition>,
    pub obstruction_detected: Option<ObstructionDetected>,
    pub name: Option<Name>,
    // some fields omitted
}

Inner type of the Window Service.

Fields

current_position: CurrentPosition

Current Position Characteristic.

target_position: TargetPosition

Target Position Characteristic.

position_state: PositionState

Position State Characteristic.

hold_position: Option<HoldPosition>

Hold Position Characteristic.

obstruction_detected: Option<ObstructionDetected>

Obstruction Detected Characteristic.

name: Option<Name>

Name Characteristic.

Trait Implementations

impl HapService for WindowInner[src]

impl Default for WindowInner[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