pub struct ClientServiceProxy(/* private fields */);Implementations§
Source§impl ClientServiceProxy
impl ClientServiceProxy
pub fn connect_to_qrtr_connector(&self) -> Result<QrtrConnectorProxy, Error>
Sourcepub fn connect_to_qrtr_connector_sync(
&self,
) -> Result<QrtrConnectorSynchronousProxy, Error>
pub fn connect_to_qrtr_connector_sync( &self, ) -> Result<QrtrConnectorSynchronousProxy, Error>
Like connect_to_qrtr_connector, but returns a sync proxy.
See Self::connect_to_qrtr_connector for more details.
Sourcepub fn connect_channel_to_qrtr_connector(
&self,
server_end: ServerEnd<QrtrConnectorMarker>,
) -> Result<(), Error>
pub fn connect_channel_to_qrtr_connector( &self, server_end: ServerEnd<QrtrConnectorMarker>, ) -> Result<(), Error>
Like connect_to_qrtr_connector, but accepts a server end.
See Self::connect_to_qrtr_connector for more details.
pub fn instance_name(&self) -> &str
Trait Implementations§
Source§impl ServiceProxy for ClientServiceProxy
Available on Fuchsia only.
impl ServiceProxy for ClientServiceProxy
Available on Fuchsia only.
Source§type Service = ClientServiceMarker
type Service = ClientServiceMarker
The FIDL service this proxy represents.
Auto Trait Implementations§
impl Freeze for ClientServiceProxy
impl !RefUnwindSafe for ClientServiceProxy
impl Send for ClientServiceProxy
impl Sync for ClientServiceProxy
impl Unpin for ClientServiceProxy
impl UnsafeUnpin for ClientServiceProxy
impl !UnwindSafe for ClientServiceProxy
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