#[non_exhaustive]#[repr(u64)]pub enum StderrMsg {
Write = 1_869_376_871,
Last = 1_634_497_651,
Error = 1_668_838_512,
StartActivity = 1_398_035_028,
StopActivity = 1_398_034_256,
Result = 1_381_190_740,
}Expand description
Stderr message types sent by the daemon during operation processing.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Write = 1_869_376_871
Write a string to stderr.
Last = 1_634_497_651
End of stderr stream — followed by the actual response.
Error = 1_668_838_512
Error message.
StartActivity = 1_398_035_028
Start activity.
StopActivity = 1_398_034_256
Stop activity.
Result = 1_381_190_740
Activity result.
Trait Implementations§
impl Copy for StderrMsg
impl Eq for StderrMsg
impl StructuralPartialEq for StderrMsg
Auto Trait Implementations§
impl Freeze for StderrMsg
impl RefUnwindSafe for StderrMsg
impl Send for StderrMsg
impl Sync for StderrMsg
impl Unpin for StderrMsg
impl UnsafeUnpin for StderrMsg
impl UnwindSafe for StderrMsg
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