Struct fidl_fuchsia_settings::AudioProxy
source · pub struct AudioProxy { /* private fields */ }
Implementations§
source§impl AudioProxy
impl AudioProxy
sourcepub fn take_event_stream(&self) -> AudioEventStream
pub fn take_event_stream(&self) -> AudioEventStream
Get a Stream of events from the remote end of the Audio protocol
Panics
Panics if the event stream was already taken.
sourcepub fn watch(&self) -> QueryResponseFut<AudioSettings>
pub fn watch(&self) -> QueryResponseFut<AudioSettings>
Gets the current AudioSettings. Returns immediately on first call; subsequent calls return when the value changes.
If this call fails, it is considered a fatal error and the channel will be closed.
sourcepub fn set(&self, settings: AudioSettings) -> QueryResponseFut<AudioSetResult>
pub fn set(&self, settings: AudioSettings) -> QueryResponseFut<AudioSetResult>
Sets audio settings. Any field not explicitly set in the table performs a no-op, and will not make any changes.
Trait Implementations§
source§impl AudioProxyInterface for AudioProxy
impl AudioProxyInterface for AudioProxy
type WatchResponseFut = QueryResponseFut<AudioSettings>
fn watch(&self) -> Self::WatchResponseFut
type SetResponseFut = QueryResponseFut<Result<(), Error>>
fn set(&self, settings: AudioSettings) -> Self::SetResponseFut
source§impl Clone for AudioProxy
impl Clone for AudioProxy
source§fn clone(&self) -> AudioProxy
fn clone(&self) -> AudioProxy
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AudioProxy
impl Debug for AudioProxy
source§impl Proxy for AudioProxy
impl Proxy for AudioProxy
§type Protocol = AudioMarker
type Protocol = AudioMarker
The protocol which this
Proxy
controls.source§fn from_channel(inner: AsyncChannel) -> Self
fn from_channel(inner: AsyncChannel) -> Self
Create a proxy over the given channel.
source§fn into_channel(self) -> Result<AsyncChannel, Self>
fn into_channel(self) -> Result<AsyncChannel, Self>
Attempt to convert the proxy back into a channel. Read more
source§fn as_channel(&self) -> &AsyncChannel
fn as_channel(&self) -> &AsyncChannel
Get a reference to the proxy’s underlying channel. Read more