Struct fuchsia_component::server::ProtocolConnector
source · pub struct ProtocolConnector { /* private fields */ }
Expand description
ProtocolConnector
allows connecting to capabilities exposed by ServiceFs
Implementations§
source§impl ProtocolConnector
impl ProtocolConnector
sourcepub fn connect_to_service<P: DiscoverableProtocolMarker>(
&self,
) -> Result<P::Proxy, Error>
pub fn connect_to_service<P: DiscoverableProtocolMarker>( &self, ) -> Result<P::Proxy, Error>
Connect to a protocol provided by this environment.
sourcepub fn connect_to_protocol<P: DiscoverableProtocolMarker>(
&self,
) -> Result<P::Proxy, Error>
pub fn connect_to_protocol<P: DiscoverableProtocolMarker>( &self, ) -> Result<P::Proxy, Error>
Connect to a protocol provided by this environment.
sourcepub fn pass_to_protocol<P: DiscoverableProtocolMarker>(
&self,
server_channel: Channel,
) -> Result<(), Error>
pub fn pass_to_protocol<P: DiscoverableProtocolMarker>( &self, server_channel: Channel, ) -> Result<(), Error>
Connect to a protocol by passing a channel for the server.
Auto Trait Implementations§
impl Freeze for ProtocolConnector
impl RefUnwindSafe for ProtocolConnector
impl Send for ProtocolConnector
impl Sync for ProtocolConnector
impl Unpin for ProtocolConnector
impl UnwindSafe for ProtocolConnector
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