pub struct MinidumpConfig { /* private fields */ }Expand description
Minidump configuration.
Implementations§
Source§impl MinidumpConfig
impl MinidumpConfig
Sourcepub fn enabled(&self) -> bool
pub fn enabled(&self) -> bool
Determines if the server will spawn the minidump sidecar.
The sidecar is required for the thread dump diagnostic and crash reports.
Defaults to true.
Sourcepub fn socket_dir(&self) -> &Path
pub fn socket_dir(&self) -> &Path
Returns the directory in which the minidump Unix socket will be placed.
Defaults to var/data/tmp.
Trait Implementations§
Source§impl Clone for MinidumpConfig
impl Clone for MinidumpConfig
Source§fn clone(&self) -> MinidumpConfig
fn clone(&self) -> MinidumpConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 MinidumpConfig
impl Debug for MinidumpConfig
Source§impl Default for MinidumpConfig
impl Default for MinidumpConfig
Source§fn default() -> MinidumpConfig
fn default() -> MinidumpConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MinidumpConfig
impl<'de> Deserialize<'de> for MinidumpConfig
Source§fn deserialize<D>(
deserializer: D,
) -> Result<MinidumpConfig, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<MinidumpConfig, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MinidumpConfig
impl PartialEq for MinidumpConfig
impl StructuralPartialEq for MinidumpConfig
Auto Trait Implementations§
impl Freeze for MinidumpConfig
impl RefUnwindSafe for MinidumpConfig
impl Send for MinidumpConfig
impl Sync for MinidumpConfig
impl Unpin for MinidumpConfig
impl UnwindSafe for MinidumpConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more