pub trait ResolveStart<R>: Sync {
// Required method
fn resolve_start(&self) -> Result<R>;
}Expand description
Careful when using this trait, or you’ll be in for a world of stack overflows.
pub trait ResolveStart<R>: Sync {
// Required method
fn resolve_start(&self) -> Result<R>;
}Careful when using this trait, or you’ll be in for a world of stack overflows.