summaryrefslogtreecommitdiff
path: root/src/conversation/id.rs
blob: 1c260c2b029b5569adb3a21452dd10122860c7ea (plain)
1
2
3
4
5
6
7
8
9
10
pub type Id = crate::id::Id<Conversation>;

#[derive(Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct Conversation;

impl crate::id::Prefix for Conversation {
    fn prefix(&self) -> &'static str {
        "C"
    }
}