Skip to main content

UserLiveAPI

Trait UserLiveAPI 

Source
pub trait UserLiveAPI: BaseClient {
    // Required methods
    fn get_stream_key(
        &self,
    ) -> impl Future<Output = Result<Response<StreamKey>, Error>> + Send;
    fn get_stream_settings(
        &self,
    ) -> impl Future<Output = Result<Response<StreamSetting>, Error>> + Send;
    fn set_stream_settings<'a>(&'a self) -> SetStreamSetting<'a>;
}

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§