pub trait SpoolableOutput {
// Required methods
fn should_spool(&self, threshold_bytes: usize) -> bool;
fn byte_size(&self) -> usize;
}Expand description
Extension trait for integrating spooler with tool results
Required Methods§
Sourcefn should_spool(&self, threshold_bytes: usize) -> bool
fn should_spool(&self, threshold_bytes: usize) -> bool
Check if this output should be spooled
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".