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