pub struct CiFailureSource;Expand description
Extracts autonomous intake signals from CI failure logs (GitHub Actions, GitLab CI, or any CI system that emits build/test output to stdout).
Relevant lines are those that contain Rust compiler errors (error[E…]),
FAILED, error:, or panicked at.
Trait Implementations§
Source§impl Clone for CiFailureSource
impl Clone for CiFailureSource
Source§fn clone(&self) -> CiFailureSource
fn clone(&self) -> CiFailureSource
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 ContinuousIntakeSource for CiFailureSource
impl ContinuousIntakeSource for CiFailureSource
Source§fn candidate_source(&self) -> AutonomousCandidateSource
fn candidate_source(&self) -> AutonomousCandidateSource
The
AutonomousCandidateSource variant this implementation covers.Source§impl Debug for CiFailureSource
impl Debug for CiFailureSource
Source§impl Default for CiFailureSource
impl Default for CiFailureSource
Source§fn default() -> CiFailureSource
fn default() -> CiFailureSource
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CiFailureSource
impl RefUnwindSafe for CiFailureSource
impl Send for CiFailureSource
impl Sync for CiFailureSource
impl Unpin for CiFailureSource
impl UnsafeUnpin for CiFailureSource
impl UnwindSafe for CiFailureSource
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