pub trait SvidSource {
type Item: Svid;
// Required method
fn get_svid(
&self,
) -> Result<Option<Self::Item>, Box<dyn Error + Send + Sync + 'static>>;
}
Expand description
Represents a source of SPIFFE SVIDs.
pub trait SvidSource {
type Item: Svid;
// Required method
fn get_svid(
&self,
) -> Result<Option<Self::Item>, Box<dyn Error + Send + Sync + 'static>>;
}
Represents a source of SPIFFE SVIDs.