[][src]Struct roku::Device

pub struct Device { /* fields omitted */ }

Implementations

impl Device[src]

pub fn new(url: Url) -> Device[src]

pub async fn discover() -> Result<Vec<Device>, Error>[src]

pub async fn apps(&self) -> Result<Apps, Error>[src]

pub async fn active_app(&self) -> Result<ActiveApp, Error>[src]

pub async fn media_player(&self) -> Result<MediaPlayer, Error>[src]

pub async fn keydown(&self, key: &Key) -> Result<(), Error>[src]

pub async fn keyup(&self, key: &Key) -> Result<(), Error>[src]

pub async fn keypress(&self, key: &Key) -> Result<(), Error>[src]

pub async fn launch(&self, app: &App) -> Result<(), Error>[src]

pub async fn install(&self, app: &App) -> Result<(), Error>[src]

pub async fn device_info(&self) -> Result<DeviceInfo, Error>[src]

pub async fn input(&self, input: &[(String, String)]) -> Result<(), Error>[src]

pub async fn search(&self, search: Search) -> Result<(), Error>[src]

Trait Implementations

impl Debug for Device[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument 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<V, T> VZip<V> for T where
    V: MultiLane<T>,