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