You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yuurei/src/state/user.rs

8 lines
254 B

//! Used to determine which post belongs to who.
//!
//! Mostly for determining if a poster owns a post.
use super::*;
#[derive(Debug, Clone, PartialEq, Eq, Ord, PartialOrd, Hash)]
pub struct UserID(()); //TODO: User ID. Maybe use IP + session ID hash?