pub enum CrashListenerRequest {
Next {
responder: CrashListenerNextResponder,
},
}
Expand description
A listener that yields component monikers that have exited uncleanly.
CrashListener
is always scoped to a [ManagedRealm
].
Variants§
Next
A hanging get call that yields component monikers (relative to the
[ManagedRealm
] root) that exited with dirty exit codes.
Yields an empty vector when the realm itself has terminated. The listener server end is closed after yielding the empty sentinel.
Fields
§
responder: CrashListenerNextResponder
Implementations§
Source§impl CrashListenerRequest
impl CrashListenerRequest
pub fn into_next(self) -> Option<CrashListenerNextResponder>
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 CrashListenerRequest
impl !RefUnwindSafe for CrashListenerRequest
impl Send for CrashListenerRequest
impl Sync for CrashListenerRequest
impl Unpin for CrashListenerRequest
impl !UnwindSafe for CrashListenerRequest
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