pub enum RolloutJsonlError {
Parse {
line: String,
source: Error,
},
Normalize {
line: String,
message: String,
},
Io {
source: Error,
},
}Expand description
Errors that may occur while parsing Codex CLI rollout JSONL logs (rollout-*.jsonl).
Variants§
Trait Implementations§
Source§impl Debug for RolloutJsonlError
impl Debug for RolloutJsonlError
Source§impl Display for RolloutJsonlError
impl Display for RolloutJsonlError
Source§impl Error for RolloutJsonlError
impl Error for RolloutJsonlError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for RolloutJsonlError
impl !RefUnwindSafe for RolloutJsonlError
impl Send for RolloutJsonlError
impl Sync for RolloutJsonlError
impl Unpin for RolloutJsonlError
impl UnsafeUnpin for RolloutJsonlError
impl !UnwindSafe for RolloutJsonlError
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