pub enum DiagnosticsRequest {
LogDebugInfoToSyslog {
responder: DiagnosticsLogDebugInfoToSyslogResponder,
},
}
Expand description
Provides two way communications between device and upper layers to exchange device health information.
Variants§
LogDebugInfoToSyslog
Requests that the device produces debugging information in the system logs.
The call returns once device debug information has been produced.
Fields
§
responder: DiagnosticsLogDebugInfoToSyslogResponder
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 Freeze for DiagnosticsRequest
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