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