pub struct ACLUser {
pub id: Option<i32>,
pub name: Option<String>,
pub role: Option<String>,
pub status: Option<String>,
pub links: Option<Vec<Link>>,
}Expand description
ACL user information
Fields§
§id: Option<i32>User ID
name: Option<String>User name
role: Option<String>Assigned role name
status: Option<String>User status (e.g., “active”, “error”)
links: Option<Vec<Link>>HATEOAS links
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ACLUser
impl<'de> Deserialize<'de> for ACLUser
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
Auto Trait Implementations§
impl Freeze for ACLUser
impl RefUnwindSafe for ACLUser
impl Send for ACLUser
impl Sync for ACLUser
impl Unpin for ACLUser
impl UnwindSafe for ACLUser
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