pub struct DeviceProxy { /* private fields */ }
Implementations§
Source§impl DeviceProxy
impl DeviceProxy
Sourcepub fn new(channel: AsyncChannel) -> Self
pub fn new(channel: AsyncChannel) -> Self
Create a new Proxy for fuchsia.hardware.backlight/Device.
Sourcepub fn take_event_stream(&self) -> DeviceEventStream
pub fn take_event_stream(&self) -> DeviceEventStream
Get a Stream of events from the remote end of the protocol.
§Panics
Panics if the event stream was already taken.
Sourcepub fn get_state_normalized(
&self,
) -> QueryResponseFut<DeviceGetStateNormalizedResult, DefaultFuchsiaResourceDialect>
pub fn get_state_normalized( &self, ) -> QueryResponseFut<DeviceGetStateNormalizedResult, DefaultFuchsiaResourceDialect>
Gets the current backlight brightness as a percentage value between 0.0 and 1.0
Sourcepub fn set_state_normalized(
&self,
state: &State,
) -> QueryResponseFut<DeviceSetStateNormalizedResult, DefaultFuchsiaResourceDialect>
pub fn set_state_normalized( &self, state: &State, ) -> QueryResponseFut<DeviceSetStateNormalizedResult, DefaultFuchsiaResourceDialect>
Sets the current backlight brightness as a percentage value between 0.0 and 1.0
Sourcepub fn get_state_absolute(
&self,
) -> QueryResponseFut<DeviceGetStateAbsoluteResult, DefaultFuchsiaResourceDialect>
pub fn get_state_absolute( &self, ) -> QueryResponseFut<DeviceGetStateAbsoluteResult, DefaultFuchsiaResourceDialect>
Gets the current backlight brightness in nits
Sourcepub fn set_state_absolute(
&self,
state: &State,
) -> QueryResponseFut<DeviceSetStateAbsoluteResult, DefaultFuchsiaResourceDialect>
pub fn set_state_absolute( &self, state: &State, ) -> QueryResponseFut<DeviceSetStateAbsoluteResult, DefaultFuchsiaResourceDialect>
Sets the current backlight brightness in nits.
Sourcepub fn get_max_absolute_brightness(
&self,
) -> QueryResponseFut<DeviceGetMaxAbsoluteBrightnessResult, DefaultFuchsiaResourceDialect>
pub fn get_max_absolute_brightness( &self, ) -> QueryResponseFut<DeviceGetMaxAbsoluteBrightnessResult, DefaultFuchsiaResourceDialect>
Gets the maximum supported backlight brightness in nits, if known. Otherwise returns error ZX_ERR_NOT_SUPPORTED.
Trait Implementations§
Source§impl Clone for DeviceProxy
impl Clone for DeviceProxy
Source§fn clone(&self) -> DeviceProxy
fn clone(&self) -> DeviceProxy
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 DeviceProxy
impl Debug for DeviceProxy
Source§impl DeviceProxyInterface for DeviceProxy
impl DeviceProxyInterface for DeviceProxy
type GetStateNormalizedResponseFut = QueryResponseFut<Result<State, i32>>
type SetStateNormalizedResponseFut = QueryResponseFut<Result<(), i32>>
type GetStateAbsoluteResponseFut = QueryResponseFut<Result<State, i32>>
type SetStateAbsoluteResponseFut = QueryResponseFut<Result<(), i32>>
type GetMaxAbsoluteBrightnessResponseFut = QueryResponseFut<Result<f64, i32>>
fn get_state_normalized(&self) -> Self::GetStateNormalizedResponseFut
fn set_state_normalized( &self, state: &State, ) -> Self::SetStateNormalizedResponseFut
fn get_state_absolute(&self) -> Self::GetStateAbsoluteResponseFut
fn set_state_absolute(&self, state: &State) -> Self::SetStateAbsoluteResponseFut
fn get_max_absolute_brightness( &self, ) -> Self::GetMaxAbsoluteBrightnessResponseFut
Source§impl Proxy for DeviceProxy
impl Proxy for DeviceProxy
Source§type Protocol = DeviceMarker
type Protocol = DeviceMarker
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
§fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>
fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>
Attempt to convert the proxy back into a client end. Read more
Auto Trait Implementations§
impl Freeze for DeviceProxy
impl !RefUnwindSafe for DeviceProxy
impl Send for DeviceProxy
impl Sync for DeviceProxy
impl Unpin for DeviceProxy
impl !UnwindSafe for DeviceProxy
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
§impl<T> FromClient for Twhere
T: Proxy,
impl<T> FromClient for Twhere
T: Proxy,
§fn from_client(value: ClientEnd<<T as FromClient>::Protocol>) -> T
fn from_client(value: ClientEnd<<T as FromClient>::Protocol>) -> T
Converts from a client.