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.serial/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_class(
&self,
) -> QueryResponseFut<Class, DefaultFuchsiaResourceDialect>
pub fn get_class( &self, ) -> QueryResponseFut<Class, DefaultFuchsiaResourceDialect>
Lookup what type of serial device this is.
Sourcepub fn set_config(
&self,
config: &Config,
) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
pub fn set_config( &self, config: &Config, ) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
Set the configuration of this serial device.
Sourcepub fn read(
&self,
) -> QueryResponseFut<DeviceReadResult, DefaultFuchsiaResourceDialect>
pub fn read( &self, ) -> QueryResponseFut<DeviceReadResult, DefaultFuchsiaResourceDialect>
Reads data from the serial port.
Sourcepub fn write(
&self,
data: &[u8],
) -> QueryResponseFut<DeviceWriteResult, DefaultFuchsiaResourceDialect>
pub fn write( &self, data: &[u8], ) -> QueryResponseFut<DeviceWriteResult, DefaultFuchsiaResourceDialect>
Writes data to the serial port.
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 GetClassResponseFut = QueryResponseFut<Class>
type SetConfigResponseFut = QueryResponseFut<i32>
type ReadResponseFut = QueryResponseFut<Result<Vec<u8>, i32>>
type WriteResponseFut = QueryResponseFut<Result<(), i32>>
fn get_class(&self) -> Self::GetClassResponseFut
fn set_config(&self, config: &Config) -> Self::SetConfigResponseFut
fn read(&self) -> Self::ReadResponseFut
fn write(&self, data: &[u8]) -> Self::WriteResponseFut
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