rust_study/src/user.rs

8 lines
136 B
Rust

#[derive(Debug)]
pub struct User {
pub username: String,
pub email: String,
pub sign_in_count: u64,
pub active: bool,
}