pub trait SvidPicker: Debug + Send + Sync { // Required method fn pick_svid<'a>(&self, svids: &'a [X509Svid]) -> Option<&'a X509Svid>; }
Strategy for selecting an X.509 SVID when multiple SVIDs are available.
Selects an SVID from the provided slice.
Returning None indicates that no suitable SVID could be selected.
None