pub trait Endpoint {
// Required methods
fn registrar(&self) -> &(dyn Registrar + Sync);
fn authorizer(&mut self) -> &mut (dyn Authorizer + Send);
fn issuer(&mut self) -> &mut (dyn Issuer + Send);
fn extension(&mut self) -> &mut (dyn Extension + Send);
}
Required Methods§
Get the authorizer from which we can recover the authorization.