pub enum StallResourceRequest {
Get {
responder: StallResourceGetResponder,
},
}
Expand description
Protocol for providing a ZX_RSRC_KIND_SYSTEM
with base
ZX_RSRC_SYSTEM_STALL_BASE
to programs that should be able to measure and
be notified of stalls.
Variants§
Implementations§
Source§impl StallResourceRequest
impl StallResourceRequest
pub fn into_get(self) -> Option<StallResourceGetResponder>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StallResourceRequest
impl !RefUnwindSafe for StallResourceRequest
impl Send for StallResourceRequest
impl Sync for StallResourceRequest
impl Unpin for StallResourceRequest
impl !UnwindSafe for StallResourceRequest
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