Struct cedar_policy::EntityTypeName
source · pub struct EntityTypeName(/* private fields */);Expand description
Represents a concatenation of Namespaces and TypeName
Implementations§
source§impl EntityTypeName
impl EntityTypeName
sourcepub fn basename(&self) -> &str
pub fn basename(&self) -> &str
Get the basename of the EntityTypeName (ie, with namespaces stripped).
use cedar_policy::EntityTypeName;
use std::str::FromStr;
let type_name = EntityTypeName::from_str("MySpace::User").unwrap();
assert_eq!(type_name.basename(), "User");sourcepub fn namespace_components(&self) -> impl Iterator<Item = &str>
pub fn namespace_components(&self) -> impl Iterator<Item = &str>
Get the namespace of the EntityTypeName, as components
use cedar_policy::EntityTypeName;
use std::str::FromStr;
let type_name = EntityTypeName::from_str("Namespace::MySpace::User").unwrap();
let mut components = type_name.namespace_components();
assert_eq!(components.next(), Some("Namespace"));
assert_eq!(components.next(), Some("MySpace"));
assert_eq!(components.next(), None);sourcepub fn namespace(&self) -> String
pub fn namespace(&self) -> String
Get the full namespace of the EntityTypeName, as a single string.
use cedar_policy::EntityTypeName;
use std::str::FromStr;
let type_name = EntityTypeName::from_str("Namespace::MySpace::User").unwrap();
let components = type_name.namespace();
assert_eq!(components,"Namespace::MySpace");Trait Implementations§
source§impl Clone for EntityTypeName
impl Clone for EntityTypeName
source§fn clone(&self) -> EntityTypeName
fn clone(&self) -> EntityTypeName
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 EntityTypeName
impl Debug for EntityTypeName
source§impl Display for EntityTypeName
impl Display for EntityTypeName
source§impl FromStr for EntityTypeName
impl FromStr for EntityTypeName
source§impl Hash for EntityTypeName
impl Hash for EntityTypeName
source§impl Ord for EntityTypeName
impl Ord for EntityTypeName
source§fn cmp(&self, other: &EntityTypeName) -> Ordering
fn cmp(&self, other: &EntityTypeName) -> 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 for EntityTypeName
impl PartialEq for EntityTypeName
source§fn eq(&self, other: &EntityTypeName) -> bool
fn eq(&self, other: &EntityTypeName) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for EntityTypeName
impl PartialOrd for EntityTypeName
source§fn partial_cmp(&self, other: &EntityTypeName) -> Option<Ordering>
fn partial_cmp(&self, other: &EntityTypeName) -> 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 RefCast for EntityTypeName
impl RefCast for EntityTypeName
impl Eq for EntityTypeName
impl StructuralPartialEq for EntityTypeName
Auto Trait Implementations§
impl Freeze for EntityTypeName
impl RefUnwindSafe for EntityTypeName
impl Send for EntityTypeName
impl Sync for EntityTypeName
impl Unpin for EntityTypeName
impl UnwindSafe for EntityTypeName
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<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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