pub struct CoreDumpInfo {
pub process_koid: Koid,
pub thread_koid: Koid,
pub linux_pid: i64,
pub argv: Vec<String>,
pub uptime: i64,
pub thread_name: String,
pub signal: String,
}Fields§
§process_koid: Koid§thread_koid: Koid§linux_pid: i64§argv: Vec<String>§uptime: i64§thread_name: String§signal: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for CoreDumpInfo
impl RefUnwindSafe for CoreDumpInfo
impl Send for CoreDumpInfo
impl Sync for CoreDumpInfo
impl Unpin for CoreDumpInfo
impl UnwindSafe for CoreDumpInfo
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
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
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