pub struct DiagnosticsReport {
pub app: AppInfo,
pub assets: AssetInfo,
pub receivers: Vec<ReceiverDiag>,
pub devices: Vec<DeviceDiag>,
}Expand description
The whole report. Render with Self::to_markdown for the clipboard.
Fields§
§app: AppInfo§assets: AssetInfo§receivers: Vec<ReceiverDiag>§devices: Vec<DeviceDiag>Implementations§
Source§impl DiagnosticsReport
impl DiagnosticsReport
Sourcepub fn to_markdown(&self) -> String
pub fn to_markdown(&self) -> String
Render the report as the Markdown blob copied to the clipboard.
Trait Implementations§
Source§impl Clone for DiagnosticsReport
impl Clone for DiagnosticsReport
Source§fn clone(&self) -> DiagnosticsReport
fn clone(&self) -> DiagnosticsReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DiagnosticsReport
impl Debug for DiagnosticsReport
Source§impl<'de> Deserialize<'de> for DiagnosticsReport
impl<'de> Deserialize<'de> for DiagnosticsReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DiagnosticsReport
impl RefUnwindSafe for DiagnosticsReport
impl Send for DiagnosticsReport
impl Sync for DiagnosticsReport
impl Unpin for DiagnosticsReport
impl UnsafeUnpin for DiagnosticsReport
impl UnwindSafe for DiagnosticsReport
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