pub struct GetUserResponse {
pub user_index: Option<u16>,
pub user_name: Option<String>,
pub user_unique_id: Option<u32>,
pub user_status: Option<UserStatus>,
pub user_type: Option<UserType>,
pub credential_rule: Option<CredentialRule>,
pub credentials: Option<Vec<Credential>>,
pub creator_fabric_index: Option<u8>,
pub last_modified_fabric_index: Option<u8>,
pub next_user_index: Option<u16>,
}Fields§
§user_index: Option<u16>§user_name: Option<String>§user_unique_id: Option<u32>§user_status: Option<UserStatus>§user_type: Option<UserType>§credential_rule: Option<CredentialRule>§credentials: Option<Vec<Credential>>§creator_fabric_index: Option<u8>§last_modified_fabric_index: Option<u8>§next_user_index: Option<u16>Trait Implementations§
Source§impl Debug for GetUserResponse
impl Debug for GetUserResponse
Auto Trait Implementations§
impl Freeze for GetUserResponse
impl RefUnwindSafe for GetUserResponse
impl Send for GetUserResponse
impl Sync for GetUserResponse
impl Unpin for GetUserResponse
impl UnwindSafe for GetUserResponse
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