pub trait HasExtension<E>: Send + Syncwhere E: ExtensionType,{ // Required method fn extension(&self) -> &E; }
core