pub struct StreamConfigConnectorInputServiceProxy(/* private fields */);
Implementations§
Source§impl StreamConfigConnectorInputServiceProxy
impl StreamConfigConnectorInputServiceProxy
pub fn connect_to_stream_config_connector( &self, ) -> Result<StreamConfigConnectorProxy, Error>
Sourcepub fn connect_to_stream_config_connector_sync(
&self,
) -> Result<StreamConfigConnectorSynchronousProxy, Error>
pub fn connect_to_stream_config_connector_sync( &self, ) -> Result<StreamConfigConnectorSynchronousProxy, Error>
Like connect_to_stream_config_connector
, but returns a sync proxy.
See Self::connect_to_stream_config_connector
for more details.
Sourcepub fn connect_channel_to_stream_config_connector(
&self,
server_end: ServerEnd<StreamConfigConnectorMarker>,
) -> Result<(), Error>
pub fn connect_channel_to_stream_config_connector( &self, server_end: ServerEnd<StreamConfigConnectorMarker>, ) -> Result<(), Error>
Like connect_to_stream_config_connector
, but accepts a server end.
See Self::connect_to_stream_config_connector
for more details.
pub fn instance_name(&self) -> &str
Trait Implementations§
Source§impl ServiceProxy for StreamConfigConnectorInputServiceProxy
impl ServiceProxy for StreamConfigConnectorInputServiceProxy
Source§type Service = StreamConfigConnectorInputServiceMarker
type Service = StreamConfigConnectorInputServiceMarker
The FIDL service this proxy represents.
Auto Trait Implementations§
impl Freeze for StreamConfigConnectorInputServiceProxy
impl !RefUnwindSafe for StreamConfigConnectorInputServiceProxy
impl Send for StreamConfigConnectorInputServiceProxy
impl Sync for StreamConfigConnectorInputServiceProxy
impl Unpin for StreamConfigConnectorInputServiceProxy
impl !UnwindSafe for StreamConfigConnectorInputServiceProxy
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