Enum cedar_policy_core::est::ResourceConstraint
source · pub enum ResourceConstraint {
All,
Eq(EqConstraint),
In(PrincipalOrResourceInConstraint),
}
Expand description
Serde JSON structure for a resource head constraint in the EST format
Variants§
All
No constraint (e.g., resource,
)
Eq(EqConstraint)
==
constraint
In(PrincipalOrResourceInConstraint)
in
constraint
Implementations§
source§impl ResourceConstraint
impl ResourceConstraint
sourcepub fn instantiate(
self,
vals: &HashMap<SlotId, EntityUidJSON>,
) -> Result<Self, InstantiationError>
pub fn instantiate( self, vals: &HashMap<SlotId, EntityUidJSON>, ) -> Result<Self, InstantiationError>
Fill in any slots in the resource constraint using the values in
vals
. Throws an error if vals
doesn’t contain a necessary mapping,
but does not throw an error if vals
contains unused mappings.
Trait Implementations§
source§impl Clone for ResourceConstraint
impl Clone for ResourceConstraint
source§fn clone(&self) -> ResourceConstraint
fn clone(&self) -> ResourceConstraint
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ResourceConstraint
impl Debug for ResourceConstraint
source§impl<'de> Deserialize<'de> for ResourceConstraint
impl<'de> Deserialize<'de> for ResourceConstraint
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<PrincipalOrResourceConstraint> for ResourceConstraint
impl From<PrincipalOrResourceConstraint> for ResourceConstraint
source§fn from(constraint: PrincipalOrResourceConstraint) -> ResourceConstraint
fn from(constraint: PrincipalOrResourceConstraint) -> ResourceConstraint
Converts to this type from the input type.
source§impl From<ResourceConstraint> for ResourceConstraint
impl From<ResourceConstraint> for ResourceConstraint
source§fn from(constraint: ResourceConstraint) -> ResourceConstraint
fn from(constraint: ResourceConstraint) -> ResourceConstraint
Converts to this type from the input type.
source§impl PartialEq for ResourceConstraint
impl PartialEq for ResourceConstraint
source§impl Serialize for ResourceConstraint
impl Serialize for ResourceConstraint
source§impl TryFrom<ResourceConstraint> for PrincipalOrResourceConstraint
impl TryFrom<ResourceConstraint> for PrincipalOrResourceConstraint
source§type Error = EstToAstError
type Error = EstToAstError
The type returned in the event of a conversion error.
source§fn try_from(
constraint: ResourceConstraint,
) -> Result<PrincipalOrResourceConstraint, EstToAstError>
fn try_from( constraint: ResourceConstraint, ) -> Result<PrincipalOrResourceConstraint, EstToAstError>
Performs the conversion.
source§impl TryFrom<ResourceConstraint> for ResourceConstraint
impl TryFrom<ResourceConstraint> for ResourceConstraint
source§type Error = EstToAstError
type Error = EstToAstError
The type returned in the event of a conversion error.
source§fn try_from(
constraint: ResourceConstraint,
) -> Result<ResourceConstraint, EstToAstError>
fn try_from( constraint: ResourceConstraint, ) -> Result<ResourceConstraint, EstToAstError>
Performs the conversion.
impl StructuralPartialEq for ResourceConstraint
Auto Trait Implementations§
impl Freeze for ResourceConstraint
impl RefUnwindSafe for ResourceConstraint
impl Send for ResourceConstraint
impl Sync for ResourceConstraint
impl Unpin for ResourceConstraint
impl UnwindSafe for ResourceConstraint
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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