pub struct ConnectorServiceProxy(/* private fields */);
Implementations§
Source§impl ConnectorServiceProxy
impl ConnectorServiceProxy
pub fn connect_to_connector(&self) -> Result<ConnectorProxy, Error>
Sourcepub fn connect_to_connector_sync(
&self,
) -> Result<ConnectorSynchronousProxy, Error>
pub fn connect_to_connector_sync( &self, ) -> Result<ConnectorSynchronousProxy, Error>
Like connect_to_connector
, but returns a sync proxy.
See Self::connect_to_connector
for more details.
Sourcepub fn connect_channel_to_connector(
&self,
server_end: ServerEnd<ConnectorMarker>,
) -> Result<(), Error>
pub fn connect_channel_to_connector( &self, server_end: ServerEnd<ConnectorMarker>, ) -> Result<(), Error>
Like connect_to_connector
, but accepts a server end.
See Self::connect_to_connector
for more details.
Trait Implementations§
Source§impl ServiceProxy for ConnectorServiceProxy
impl ServiceProxy for ConnectorServiceProxy
Source§type Service = ConnectorServiceMarker
type Service = ConnectorServiceMarker
The FIDL service this proxy represents.
Auto Trait Implementations§
impl Freeze for ConnectorServiceProxy
impl !RefUnwindSafe for ConnectorServiceProxy
impl !Send for ConnectorServiceProxy
impl !Sync for ConnectorServiceProxy
impl Unpin for ConnectorServiceProxy
impl !UnwindSafe for ConnectorServiceProxy
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