#[non_exhaustive]pub struct EntityIdentifier {
pub entity_type: Option<String>,
pub entity_id: Option<String>,
}
Expand description
Contains the identifier of an entity, including its ID and type.
This data type is used as a request parameter for IsAuthorized operation, and as a response parameter for the CreatePolicy, GetPolicy, and UpdatePolicy operations.
Example: {"entityId":"string","entityType":"string"}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.entity_type: Option<String>
The type of an entity.
Example: "entityType":"typeName"
entity_id: Option<String>
The identifier of an entity.
"entityId":"identifier"
Implementations§
source§impl EntityIdentifier
impl EntityIdentifier
sourcepub fn builder() -> EntityIdentifierBuilder
pub fn builder() -> EntityIdentifierBuilder
Creates a new builder-style object to manufacture EntityIdentifier
.
Trait Implementations§
source§impl Clone for EntityIdentifier
impl Clone for EntityIdentifier
source§fn clone(&self) -> EntityIdentifier
fn clone(&self) -> EntityIdentifier
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 EntityIdentifier
impl Debug for EntityIdentifier
source§impl PartialEq for EntityIdentifier
impl PartialEq for EntityIdentifier
source§fn eq(&self, other: &EntityIdentifier) -> bool
fn eq(&self, other: &EntityIdentifier) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for EntityIdentifier
Auto Trait Implementations§
impl RefUnwindSafe for EntityIdentifier
impl Send for EntityIdentifier
impl Sync for EntityIdentifier
impl Unpin for EntityIdentifier
impl UnwindSafe for EntityIdentifier
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