pub struct Attributes {
pub ldap_cn: String,
pub kd_org: String,
pub peran_user: String,
pub nama: String,
pub npm: String,
}
Expand description
Represents a user’s attributes XML tag.
Fields§
§ldap_cn: String
The LDAP common name of the user.
kd_org: String
User’s organization code.
peran_user: String
User’s role.
nama: String
User’s name.
npm: String
User’s student ID number.
Trait Implementations§
Source§impl Clone for Attributes
impl Clone for Attributes
Source§fn clone(&self) -> Attributes
fn clone(&self) -> Attributes
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 Serialize for Attributes
impl Serialize for Attributes
Auto Trait Implementations§
impl Freeze for Attributes
impl RefUnwindSafe for Attributes
impl Send for Attributes
impl Sync for Attributes
impl Unpin for Attributes
impl UnwindSafe for Attributes
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