pub struct User {
    pub username: String,
    pub groups: Vec<u64, Global>,
    pub roles: Vec<u64, Global>,
    pub argon_hash: Option<SensitiveString>,
}
Expand description

A user that can authenticate with BonsaiDb.

Fields

username: String

The name of the role. Must be unique.

groups: Vec<u64, Global>

The IDs of the user groups this user belongs to.

roles: Vec<u64, Global>

The IDs of the roles this user has been assigned.

argon_hash: Option<SensitiveString>

The user’s stored password hash.

This field is not feature gated to prevent losing stored passwords if the password-hashing feature is disabled and then re-enabled and user records are updated in the meantime.

Implementations

Returns a default user with the given username.

Calculates the effective permissions based on the groups and roles this user is assigned.

Trait Implementations

If a KeyId is returned, this collection will be stored encrypted at-rest using the key specified. Read more

The Id of this collection.

Defines all Views in this collection in schema.

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

The name view defined for the collection.

Gets a CollectionDocument with id from connection.

Gets a CollectionDocument with id from connection.

Loads a document from this collection by name, if applicable. Return Ok(None) if unsupported. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Should always be Self

Returns the unique SchemaName for this schema.

Defines the Collections into schema.

Retrieves the Schematic for this schema.

The type of the contents stored in documents in this collection.

The serialization format for this collection.

Returns the configured instance of Self::Format.

Deserialize data as Self::Contents using this collection’s format.

Serialize item using this collection’s format.

Gets a CollectionDocument with id from connection.

Retrieves all documents matching ids. Documents that are not found are not returned, but no error will be generated. Read more

Retrieves all documents matching ids. Documents that are not found are not returned, but no error will be generated. Read more

Pushes this value into the collection, returning the created document.

Pushes this value into the collection, returning the created document.

Inserts this value into the collection with the specified id, returning the created document. Read more

Inserts this value into the collection with the given id, returning the created document. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more