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.qcom.hvdcpopti/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.
pub fn get_essential_params( &self, ) -> QueryResponseFut<DeviceGetEssentialParamsResult, DefaultFuchsiaResourceDialect>
pub fn set_essential_params( &self, params: &[u8; 48], ) -> QueryResponseFut<DeviceSetEssentialParamsResult, DefaultFuchsiaResourceDialect>
pub fn get_config( &self, ) -> QueryResponseFut<[u8; 104], DefaultFuchsiaResourceDialect>
pub fn set_processed_fifo_data( &self, data: &[u8; 152], ) -> QueryResponseFut<(), DefaultFuchsiaResourceDialect>
pub fn get_step_and_jeita_params( &self, ) -> QueryResponseFut<[u8; 247], DefaultFuchsiaResourceDialect>
pub fn get_battery_config( &self, ) -> QueryResponseFut<[u8; 304], DefaultFuchsiaResourceDialect>
pub fn get_battery_profile( &self, request: &[u8; 8], ) -> QueryResponseFut<DeviceGetBatteryProfileResult, DefaultFuchsiaResourceDialect>
Sourcepub fn get_iio_value(
&self,
label: &str,
) -> QueryResponseFut<DeviceGetIioValueResult, DefaultFuchsiaResourceDialect>
pub fn get_iio_value( &self, label: &str, ) -> QueryResponseFut<DeviceGetIioValueResult, DefaultFuchsiaResourceDialect>
Gets Industrial I/O (IIO) reading value. Values available depend on what the server supports. May overlap with other configs in fuchsia.power.battery, but will be cleaned up with sysfs cleanup.
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 GetEssentialParamsResponseFut = QueryResponseFut<Result<[u8; 48], i32>>
type SetEssentialParamsResponseFut = QueryResponseFut<Result<(), i32>>
type GetConfigResponseFut = QueryResponseFut<[u8; 104]>
type SetProcessedFifoDataResponseFut = QueryResponseFut<()>
type GetStepAndJeitaParamsResponseFut = QueryResponseFut<[u8; 247]>
type GetBatteryConfigResponseFut = QueryResponseFut<[u8; 304]>
type GetBatteryProfileResponseFut = QueryResponseFut<Result<[u8; 596], i32>>
type GetIioValueResponseFut = QueryResponseFut<Result<i32, i32>>
fn get_essential_params(&self) -> Self::GetEssentialParamsResponseFut
fn set_essential_params( &self, params: &[u8; 48], ) -> Self::SetEssentialParamsResponseFut
fn get_config(&self) -> Self::GetConfigResponseFut
fn set_processed_fifo_data( &self, data: &[u8; 152], ) -> Self::SetProcessedFifoDataResponseFut
fn get_step_and_jeita_params(&self) -> Self::GetStepAndJeitaParamsResponseFut
fn get_battery_config(&self) -> Self::GetBatteryConfigResponseFut
fn get_battery_profile( &self, request: &[u8; 8], ) -> Self::GetBatteryProfileResponseFut
fn get_iio_value(&self, label: &str) -> Self::GetIioValueResponseFut
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