rust-nex/src/nex/account.rs

15 lines
217 B
Rust
Raw Normal View History

2025-02-01 17:18:52 +01:00
struct Account{
pid: u32,
kerbros_password: Box<str>,
}
impl Account{
fn new(pid: u32, passwd: &str) -> Self{
Self{
kerbros_password: passwd.into(),
pid
}
}
}