pub trait CollectibleIssuesExtwhere
    Self: Sized,{
    // Required methods
    fn peek_issues(self) -> CapturedIssues;
    fn drop_issues(self);
}Required Methods§
Sourcefn peek_issues(self) -> CapturedIssues
 
fn peek_issues(self) -> CapturedIssues
Returns all issues from source
Must be called in a turbo-task as this constructs a cell
Sourcefn drop_issues(self)
 
fn drop_issues(self)
Drops all issues from source
This unemits the issues. They will not propagate up.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.