1 2 3 4
use crate::eyre::Report; pub trait Sealed {} impl<T, E> Sealed for std::result::Result<T, E> where E: Into<Report> {}