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/tripcode.rs

13 lines
225 B

//! Tripcode. TODO: Use kana-hash
use super::*;
///TODO: A kana-hash tripcode
#[derive(Debug, Clone, PartialEq, Eq, Hash, Ord, PartialOrd)]
pub enum Tripcode
{
Secure(i32),
Normal(i32),
Special(&'static str),
}