Struct cedar_policy_core::ast::Policy

source ·
pub struct Policy { /* private fields */ }
Expand description

A Policy that contains: a pointer to its template an link ID (unless it’s an static policy) the bound values for slots in the template

Policies are not serializable (due to the pointer), and can be serialized by converting to/from LiteralPolicy

Implementations§

source§

impl Policy

source

pub fn from_when_clause(effect: Effect, when: Expr, id: PolicyID) -> Self

Build a policy with a given effect, given when clause, and unconstrained head variables

source

pub fn template(&self) -> &Template

Get pointer to the template for this policy

source

pub fn effect(&self) -> Effect

Get the effect (forbid or permit) of this policy.

source

pub fn annotation(&self, key: &Id) -> Option<&SmolStr>

Get data from an annotation.

source

pub fn annotations(&self) -> impl Iterator<Item = (&Id, &SmolStr)>

Get all annotation data.

source

pub fn principal_constraint(&self) -> PrincipalConstraint

Get the principal constraint for this policy.

By the invariant, this principal constraint will not contain (unresolved) slots, so you will not get EntityReference::Slot anywhere in it.

source

pub fn action_constraint(&self) -> &ActionConstraint

Get the action constraint for this policy.

source

pub fn resource_constraint(&self) -> ResourceConstraint

Get the resource constraint for this policy.

By the invariant, this resource constraint will not contain (unresolved) slots, so you will not get EntityReference::Slot anywhere in it.

source

pub fn non_head_constraints(&self) -> &Expr

Get the non-head constraints for the policy

source

pub fn condition(&self) -> Expr

Get the expression that represents this policy.

source

pub fn env(&self) -> &SlotEnv

Get the mapping from SlotIds to EntityUIDs for this policy. (This will be empty for inline policies.)

source

pub fn id(&self) -> &PolicyID

Get the ID of this policy.

source

pub fn new_id(&self, id: PolicyID) -> Self

Clone this policy or instance with a new ID

source

pub fn is_static(&self) -> bool

Returns true if this policy is an inline policy

Trait Implementations§

source§

impl Clone for Policy

source§

fn clone(&self) -> Policy

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Policy

source§

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

Formats the value using the given formatter. Read more
source§

impl Display for Policy

source§

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

Formats the value using the given formatter. Read more
source§

impl<'a> From<&'a Policy> for BorrowedLiteralPolicy<'a>

source§

fn from(p: &'a Policy) -> Self

Converts to this type from the input type.
source§

impl From<Policy> for LiteralPolicy

source§

fn from(p: Policy) -> Self

Converts to this type from the input type.
source§

impl From<Policy> for Policy

Convert AST to EST

source§

fn from(ast: Policy) -> Policy

Converts to this type from the input type.
source§

impl From<StaticPolicy> for Policy

source§

fn from(inline: StaticPolicy) -> Policy

Converts to this type from the input type.
source§

impl PartialEq for Policy

source§

fn eq(&self, other: &Policy) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Policy

source§

impl StructuralPartialEq for Policy

Auto Trait Implementations§

§

impl Freeze for Policy

§

impl RefUnwindSafe for Policy

§

impl Send for Policy

§

impl Sync for Policy

§

impl Unpin for Policy

§

impl UnwindSafe for Policy

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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToSmolStr for T
where T: Display + ?Sized,

source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
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.