Enum bonsaidb_core::connection::IdentityId
source · #[non_exhaustive]pub enum IdentityId {
User(u64),
Role(u64),
}
Expand description
An identity from the connected BonsaiDb instance.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
source§impl Clone for IdentityId
impl Clone for IdentityId
source§fn clone(&self) -> IdentityId
fn clone(&self) -> IdentityId
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 IdentityId
impl Debug for IdentityId
source§impl<'de> Deserialize<'de> for IdentityId
impl<'de> Deserialize<'de> for IdentityId
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 Serialize for IdentityId
impl Serialize for IdentityId
impl Copy for IdentityId
Auto Trait Implementations§
impl RefUnwindSafe for IdentityId
impl Send for IdentityId
impl Sync for IdentityId
impl Unpin for IdentityId
impl UnwindSafe for IdentityId
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