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