pub struct Login7<'a> {
pub hostname: &'a str,
pub username: &'a str,
pub password: &'a [u8],
pub application: &'a str,
pub server: &'a str,
pub library: &'a str,
pub language: &'a str,
pub database: &'a str,
pub packet_size: usize,
}Expand description
Everything LOGIN7 carries that is not a constant.
Fields§
§hostname: &'a str§username: &'a str§password: &'a [u8]Already obfuscated by super::auth::obfuscate_password.
application: &'a str§server: &'a str§library: &'a str§language: &'a str§database: &'a str§packet_size: usizeTrait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Login7<'a>
impl<'a> RefUnwindSafe for Login7<'a>
impl<'a> Send for Login7<'a>
impl<'a> Sync for Login7<'a>
impl<'a> Unpin for Login7<'a>
impl<'a> UnsafeUnpin for Login7<'a>
impl<'a> UnwindSafe for Login7<'a>
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