pub struct PerformanceCounterServiceProxy(/* private fields */);
Implementations§
Source§impl PerformanceCounterServiceProxy
impl PerformanceCounterServiceProxy
pub fn connect_to_access(&self) -> Result<PerformanceCounterAccessProxy, Error>
Sourcepub fn connect_to_access_sync(
&self,
) -> Result<PerformanceCounterAccessSynchronousProxy, Error>
pub fn connect_to_access_sync( &self, ) -> Result<PerformanceCounterAccessSynchronousProxy, Error>
Like connect_to_access
, but returns a sync proxy.
See Self::connect_to_access
for more details.
Sourcepub fn connect_channel_to_access(
&self,
server_end: ServerEnd<PerformanceCounterAccessMarker>,
) -> Result<(), Error>
pub fn connect_channel_to_access( &self, server_end: ServerEnd<PerformanceCounterAccessMarker>, ) -> Result<(), Error>
Like connect_to_access
, but accepts a server end.
See Self::connect_to_access
for more details.
pub fn instance_name(&self) -> &str
Trait Implementations§
Source§impl ServiceProxy for PerformanceCounterServiceProxy
impl ServiceProxy for PerformanceCounterServiceProxy
Source§type Service = PerformanceCounterServiceMarker
type Service = PerformanceCounterServiceMarker
The FIDL service this proxy represents.
Auto Trait Implementations§
impl Freeze for PerformanceCounterServiceProxy
impl !RefUnwindSafe for PerformanceCounterServiceProxy
impl Send for PerformanceCounterServiceProxy
impl Sync for PerformanceCounterServiceProxy
impl Unpin for PerformanceCounterServiceProxy
impl !UnwindSafe for PerformanceCounterServiceProxy
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