pub struct ServiceProxy(/* private fields */);Implementations§
Source§impl ServiceProxy
impl ServiceProxy
pub fn connect_to_wlantap_ctl(&self) -> Result<WlantapCtlProxy, Error>
Sourcepub fn connect_to_wlantap_ctl_sync(
&self,
) -> Result<WlantapCtlSynchronousProxy, Error>
pub fn connect_to_wlantap_ctl_sync( &self, ) -> Result<WlantapCtlSynchronousProxy, Error>
Like connect_to_wlantap_ctl, but returns a sync proxy.
See Self::connect_to_wlantap_ctl for more details.
Sourcepub fn connect_channel_to_wlantap_ctl(
&self,
server_end: ServerEnd<WlantapCtlMarker>,
) -> Result<(), Error>
pub fn connect_channel_to_wlantap_ctl( &self, server_end: ServerEnd<WlantapCtlMarker>, ) -> Result<(), Error>
Like connect_to_wlantap_ctl, but accepts a server end.
See Self::connect_to_wlantap_ctl for more details.
pub fn instance_name(&self) -> &str
Trait Implementations§
Source§impl ServiceProxy for ServiceProxy
Available on Fuchsia only.
impl ServiceProxy for ServiceProxy
Available on Fuchsia only.
Source§type Service = ServiceMarker
type Service = ServiceMarker
The FIDL service this proxy represents.
Auto Trait Implementations§
impl !RefUnwindSafe for ServiceProxy
impl !UnwindSafe for ServiceProxy
impl Freeze for ServiceProxy
impl Send for ServiceProxy
impl Sync for ServiceProxy
impl Unpin for ServiceProxy
impl UnsafeUnpin for ServiceProxy
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