Skip to main content

NoopDelegationInvoker

Struct NoopDelegationInvoker 

Source
pub struct NoopDelegationInvoker;
Expand description

DelegationInvoker impl that returns NotFound for every call. Useful as the default for evaluator callers that don’t run any delegate(...) steps — they need to pass something implementing the trait, but the noop never actually gets invoked. Tests and hosts that haven’t wired a real delegation backend pass this.

Trait Implementations§

Source§

impl DelegationInvoker for NoopDelegationInvoker

Source§

fn delegate<'life0, 'life1, 'async_trait>( &'life0 self, step: &'life1 DelegateStep, ) -> Pin<Box<dyn Future<Output = Result<DelegationOutcome, DelegationError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Run one delegation step. Returns a DelegationOutcome carrying the granted permissions / audience / expiry the IdP issued; the evaluator writes those into the bag as delegation.granted_* attributes so subsequent rules in the same step list can inspect them via require(delegation.granted_permissions contains "X") etc. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.