aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils.rs
blob: 77e6e5e6d562590b3b4682bb6eb3a2d5bcb31cc0 (plain) (blame)
1
2
3
4
5
6
pub trait NotmuchEnum {
    type NotmuchT;

    fn from_notmuch_t(notmuch_t: Self::NotmuchT) -> Self;
    fn to_notmuch_t(self) -> Self::NotmuchT;
}