Enum cedar_policy_core::ast::EntityType
source · pub enum EntityType {
Concrete(Name),
Unspecified,
}Expand description
We support two types of entities. The first is a nominal type (e.g., User, Action) and the second is an unspecified type, which is used (internally) to represent cases where the input request does not provide a principal, action, and/or resource.
Variants§
Implementations§
Trait Implementations§
source§impl Clone for EntityType
impl Clone for EntityType
source§fn clone(&self) -> EntityType
fn clone(&self) -> EntityType
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 EntityType
impl Debug for EntityType
source§impl<'de> Deserialize<'de> for EntityType
impl<'de> Deserialize<'de> for EntityType
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 Display for EntityType
impl Display for EntityType
source§impl Hash for EntityType
impl Hash for EntityType
source§impl Ord for EntityType
impl Ord for EntityType
source§fn cmp(&self, other: &EntityType) -> Ordering
fn cmp(&self, other: &EntityType) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<EntityType> for EntityType
impl PartialEq<EntityType> for EntityType
source§fn eq(&self, other: &EntityType) -> bool
fn eq(&self, other: &EntityType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<EntityType> for EntityType
impl PartialOrd<EntityType> for EntityType
source§fn partial_cmp(&self, other: &EntityType) -> Option<Ordering>
fn partial_cmp(&self, other: &EntityType) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresource§impl Serialize for EntityType
impl Serialize for EntityType
impl Eq for EntityType
impl StructuralEq for EntityType
impl StructuralPartialEq for EntityType
Auto Trait Implementations§
impl RefUnwindSafe for EntityType
impl Send for EntityType
impl Sync for EntityType
impl Unpin for EntityType
impl UnwindSafe for EntityType
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