pub struct DebugContext {
pub server_logs: Option<String>,
pub client_dump_paths: Vec<PathBuf>,
}Expand description
Debug context collected during panic.
Contains server logs and client dump file paths for crash reports.
Fields§
§server_logs: Option<String>Server debug ring buffer dump (Phase #478).
client_dump_paths: Vec<PathBuf>Paths to client debug dump files.
Trait Implementations§
Source§impl Debug for DebugContext
impl Debug for DebugContext
Source§impl Default for DebugContext
impl Default for DebugContext
Source§fn default() -> DebugContext
fn default() -> DebugContext
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DebugContext
impl RefUnwindSafe for DebugContext
impl Send for DebugContext
impl Sync for DebugContext
impl Unpin for DebugContext
impl UnsafeUnpin for DebugContext
impl UnwindSafe for DebugContext
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