Source

Trait Source 

Source
pub trait Source {
    // Required method
    fn get_jwt_bundle_for_trust_domain(
        &self,
        trust_domain: TrustDomain,
    ) -> Result<Bundle>;
}
Expand description

A source of JWT bundles.

Required Methods§

Source

fn get_jwt_bundle_for_trust_domain( &self, trust_domain: TrustDomain, ) -> Result<Bundle>

Returns the JWT bundle for the given trust domain.

Implementors§