pub struct ACLRoleUser {
pub id: Option<i32>,
pub name: Option<String>,
}Expand description
User reference in an ACL role
Fields§
§id: Option<i32>User ID
name: Option<String>User name
Trait Implementations§
Source§impl Clone for ACLRoleUser
impl Clone for ACLRoleUser
Source§fn clone(&self) -> ACLRoleUser
fn clone(&self) -> ACLRoleUser
Returns a duplicate 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 ACLRoleUser
impl Debug for ACLRoleUser
Source§impl<'de> Deserialize<'de> for ACLRoleUser
impl<'de> Deserialize<'de> for ACLRoleUser
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 ACLRoleUser
impl RefUnwindSafe for ACLRoleUser
impl Send for ACLRoleUser
impl Sync for ACLRoleUser
impl Unpin for ACLRoleUser
impl UnwindSafe for ACLRoleUser
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