pub struct StreamConfigConnectorOutputServiceProxy(/* private fields */);
Implementations§
Source§impl StreamConfigConnectorOutputServiceProxy
impl StreamConfigConnectorOutputServiceProxy
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 StreamConfigConnectorOutputServiceProxy
impl ServiceProxy for StreamConfigConnectorOutputServiceProxy
Source§type Service = StreamConfigConnectorOutputServiceMarker
type Service = StreamConfigConnectorOutputServiceMarker
The FIDL service this proxy represents.
Auto Trait Implementations§
impl Freeze for StreamConfigConnectorOutputServiceProxy
impl !RefUnwindSafe for StreamConfigConnectorOutputServiceProxy
impl Send for StreamConfigConnectorOutputServiceProxy
impl Sync for StreamConfigConnectorOutputServiceProxy
impl Unpin for StreamConfigConnectorOutputServiceProxy
impl !UnwindSafe for StreamConfigConnectorOutputServiceProxy
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