#[repr(C)]pub struct UserAccount {
pub szUsername: [TTCHAR; 512],
pub szPassword: [TTCHAR; 512],
pub uUserType: UserTypes,
pub uUserRights: UserRights,
pub nUserData: INT32,
pub szNote: [TTCHAR; 512],
pub szInitChannel: [TTCHAR; 512],
pub autoOperatorChannels: [INT32; 16],
pub nAudioCodecBpsLimit: INT32,
pub abusePrevent: AbusePrevention,
pub szLastModified: [TTCHAR; 512],
pub szLastLoginTime: [TTCHAR; 512],
}Fields§
§szUsername: [TTCHAR; 512]§szPassword: [TTCHAR; 512]§uUserType: UserTypes§uUserRights: UserRights§nUserData: INT32§szNote: [TTCHAR; 512]§szInitChannel: [TTCHAR; 512]§autoOperatorChannels: [INT32; 16]§nAudioCodecBpsLimit: INT32§abusePrevent: AbusePrevention§szLastModified: [TTCHAR; 512]§szLastLoginTime: [TTCHAR; 512]Trait Implementations§
Source§impl Clone for UserAccount
impl Clone for UserAccount
Source§fn clone(&self) -> UserAccount
fn clone(&self) -> UserAccount
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 UserAccount
impl Debug for UserAccount
Source§impl Default for UserAccount
impl Default for UserAccount
impl Copy for UserAccount
Auto Trait Implementations§
impl Freeze for UserAccount
impl RefUnwindSafe for UserAccount
impl Send for UserAccount
impl Sync for UserAccount
impl Unpin for UserAccount
impl UnwindSafe for UserAccount
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