pub struct UsageGainReporterSynchronousProxy { /* private fields */ }Implementations§
Source§impl UsageGainReporterSynchronousProxy
 
impl UsageGainReporterSynchronousProxy
pub fn new(channel: Channel) -> Self
pub fn into_channel(self) -> Channel
Sourcepub fn wait_for_event(
    &self,
    deadline: MonotonicInstant,
) -> Result<UsageGainReporterEvent, Error>
 
pub fn wait_for_event( &self, deadline: MonotonicInstant, ) -> Result<UsageGainReporterEvent, Error>
Waits until an event arrives and returns it. It is safe for other threads to make concurrent requests while waiting for an event.
Sourcepub fn register_listener(
    &self,
    device_unique_id: &str,
    usage: &Usage,
    usage_gain_listener: ClientEnd<UsageGainListenerMarker>,
) -> Result<(), Error>
 
pub fn register_listener( &self, device_unique_id: &str, usage: &Usage, usage_gain_listener: ClientEnd<UsageGainListenerMarker>, ) -> Result<(), Error>
Connects a listener to a stream of usage gain setting changes
for usage on the device identified by device_token. Usage
Gain is not set directly by any client; it is a translation of
the usage volume setting for each device, summed with active
muting/ducking gain adjustments.
Devices may map the same volume level to different dbfs, so
a device_unique_id is needed to identify the device.
AudioDeviceEnumerator provides programmatic access to devices
and their unique ids if it is necessary for a client to select
an id at runtime.
Sourcepub fn register_listener2(
    &self,
    device_unique_id: &str,
    usage: &Usage2,
    usage_gain_listener: ClientEnd<UsageGainListenerMarker>,
) -> Result<(), Error>
 
pub fn register_listener2( &self, device_unique_id: &str, usage: &Usage2, usage_gain_listener: ClientEnd<UsageGainListenerMarker>, ) -> Result<(), Error>
Connects a listener to a stream of usage gain setting changes
for usage on the device identified by device_token. Usage
Gain is not set directly by any client; it is a translation of
the usage volume setting for each device, summed with active
muting/ducking gain adjustments.
Devices may map the same volume level to different dbfs, so
a device_unique_id is needed to identify the device.
AudioDeviceEnumerator provides programmatic access to devices
and their unique ids if it is necessary for a client to select
an id at runtime.
Trait Implementations§
Source§impl From<Channel> for UsageGainReporterSynchronousProxy
Available on Fuchsia only. 
impl From<Channel> for UsageGainReporterSynchronousProxy
Source§impl From<UsageGainReporterSynchronousProxy> for Handle
Available on Fuchsia only. 
impl From<UsageGainReporterSynchronousProxy> for Handle
Source§fn from(value: UsageGainReporterSynchronousProxy) -> Self
 
fn from(value: UsageGainReporterSynchronousProxy) -> Self
Source§impl FromClient for UsageGainReporterSynchronousProxy
Available on Fuchsia only. 
impl FromClient for UsageGainReporterSynchronousProxy
Source§type Protocol = UsageGainReporterMarker
 
type Protocol = UsageGainReporterMarker
Source§fn from_client(value: ClientEnd<UsageGainReporterMarker>) -> Self
 
fn from_client(value: ClientEnd<UsageGainReporterMarker>) -> Self
Source§impl SynchronousProxy for UsageGainReporterSynchronousProxy
Available on Fuchsia only. 
impl SynchronousProxy for UsageGainReporterSynchronousProxy
Source§type Proxy = UsageGainReporterProxy
 
type Proxy = UsageGainReporterProxy
Source§type Protocol = UsageGainReporterMarker
 
type Protocol = UsageGainReporterMarker
Proxy controls.