pub enum DiagnosticsRequest {
LogDebugInfoToSyslog {
responder: DiagnosticsLogDebugInfoToSyslogResponder,
},
}
Expand description
Provides two way communications between device and upper layers to exchange device health information.
Variants§
LogDebugInfoToSyslog
Fields
§
responder: DiagnosticsLogDebugInfoToSyslogResponder
Requests that the device produces debugging information in the system logs.
The call returns once device debug information has been produced.
Implementations§
source§impl DiagnosticsRequest
impl DiagnosticsRequest
pub fn into_log_debug_info_to_syslog( self ) -> Option<DiagnosticsLogDebugInfoToSyslogResponder>
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 !RefUnwindSafe for DiagnosticsRequest
impl Send for DiagnosticsRequest
impl Sync for DiagnosticsRequest
impl Unpin for DiagnosticsRequest
impl !UnwindSafe for DiagnosticsRequest
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