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