pub trait GenericKeySource: Sealed {
    fn key_source<'a>(&'a self) -> KeySource<'a>;
}
Expand description

This type is used internally for generic function overload purposes. See and use KeySource instead.

Required Methods

Implementors