pub struct DisplayServiceProxy(/* private fields */);
Expand description
The service that provides access to the display device.
Implementations§
Source§impl DisplayServiceProxy
impl DisplayServiceProxy
Sourcepub fn connect_to_mcudisplay(&self) -> Result<DisplayDeviceProxy, Error>
pub fn connect_to_mcudisplay(&self) -> Result<DisplayDeviceProxy, Error>
The display device.
Sourcepub fn connect_to_mcudisplay_sync(
&self,
) -> Result<DisplayDeviceSynchronousProxy, Error>
pub fn connect_to_mcudisplay_sync( &self, ) -> Result<DisplayDeviceSynchronousProxy, Error>
Like connect_to_mcudisplay
, but returns a sync proxy.
See Self::connect_to_mcudisplay
for more details.
Sourcepub fn connect_channel_to_mcudisplay(
&self,
server_end: ServerEnd<DisplayDeviceMarker>,
) -> Result<(), Error>
pub fn connect_channel_to_mcudisplay( &self, server_end: ServerEnd<DisplayDeviceMarker>, ) -> Result<(), Error>
Like connect_to_mcudisplay
, but accepts a server end.
See Self::connect_to_mcudisplay
for more details.
pub fn instance_name(&self) -> &str
Trait Implementations§
Source§impl ServiceProxy for DisplayServiceProxy
impl ServiceProxy for DisplayServiceProxy
Source§type Service = DisplayServiceMarker
type Service = DisplayServiceMarker
The FIDL service this proxy represents.
Auto Trait Implementations§
impl Freeze for DisplayServiceProxy
impl !RefUnwindSafe for DisplayServiceProxy
impl Send for DisplayServiceProxy
impl Sync for DisplayServiceProxy
impl Unpin for DisplayServiceProxy
impl !UnwindSafe for DisplayServiceProxy
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