1 2 3 4 5 6 7 8 9 10
use time::OffsetDateTime; use uuid::Uuid; #[derive(Debug, Clone)] pub struct Device { pub id: Uuid, pub user_id: Uuid, pub name: Option<String>, pub created_at: Option<OffsetDateTime>, }