pub struct ProfileErrorRecord {
pub target: String,
pub exit_status: i32,
pub message: String,
}Expand description
One captured stderr record from a sourced shell file. The shell wrapper writes one record per source whose stderr was non-empty, regardless of exit status (warnings emitted on a successful source are surfaced too).
Fields§
§target: String§exit_status: i32§message: StringCaptured stderr verbatim, with trailing newline preserved if present in the original. May be multiple lines.
Trait Implementations§
Source§impl Clone for ProfileErrorRecord
impl Clone for ProfileErrorRecord
Source§fn clone(&self) -> ProfileErrorRecord
fn clone(&self) -> ProfileErrorRecord
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 ProfileErrorRecord
impl Debug for ProfileErrorRecord
Source§impl PartialEq for ProfileErrorRecord
impl PartialEq for ProfileErrorRecord
Source§impl Serialize for ProfileErrorRecord
impl Serialize for ProfileErrorRecord
impl StructuralPartialEq for ProfileErrorRecord
Auto Trait Implementations§
impl Freeze for ProfileErrorRecord
impl RefUnwindSafe for ProfileErrorRecord
impl Send for ProfileErrorRecord
impl Sync for ProfileErrorRecord
impl Unpin for ProfileErrorRecord
impl UnsafeUnpin for ProfileErrorRecord
impl UnwindSafe for ProfileErrorRecord
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