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