Request

Struct Request 

Source
pub struct Request<RC> { /* private fields */ }
Expand description

Represents a request that needs to be evaluated by Policy engine.

Implementations§

Source§

impl<RC> Request<RC>

Source

pub fn new( identity: impl Into<String>, operation: impl Into<String>, resource: impl Into<String>, ) -> Result<Self>

Creates a new Request.

§Errors

Returns an error if either identity or operation is an empty string.

Source

pub fn with_context( identity: impl Into<String>, operation: impl Into<String>, resource: impl Into<String>, context: RC, ) -> Result<Self>

Creates a new Request with provided context data.

§Errors

Returns an error if either identity or operation is an empty string.

Source

pub fn identity(&self) -> &str

Source

pub fn operation(&self) -> &str

Source

pub fn resource(&self) -> &str

Source

pub fn context(&self) -> Option<&RC>

Trait Implementations§

Source§

impl<RC: Debug> Debug for Request<RC>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<RC> Freeze for Request<RC>
where RC: Freeze,

§

impl<RC> RefUnwindSafe for Request<RC>
where RC: RefUnwindSafe,

§

impl<RC> Send for Request<RC>
where RC: Send,

§

impl<RC> Sync for Request<RC>
where RC: Sync,

§

impl<RC> Unpin for Request<RC>
where RC: Unpin,

§

impl<RC> UnwindSafe for Request<RC>
where RC: UnwindSafe,

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.