Struct holding non-allocated user info.
struct Info<'a> {
/* private fields */
}| Name | Description |
|---|---|
| find_by | Finds the first user that satisfies a predicate. |
| from_user_id | Retrieves user info of the user with a certain id. |
| from_user_name | Retrieves user info of the user with a certain name. |
| Name | Description |
|---|---|
| Clone | Objects that can be duplicated. |
| Copy | Objects that can safely be copied via |
| Debug | Objects that can be formatted in a "debug" form. |
| Eq | Objects that implement the binary |
| MaybeClone | Objects that can be duplicated. |
| ToOwned | Objects that can be converted into an owned version. |
| UserInfo | Objects that hold user info. |