summaryrefslogtreecommitdiffstats
path: root/librepology/src/v1/types/name.rs
blob: 0097f999a248487c8e5cb5e8eb9b673d25c6ebe1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::ops::Deref;

// package name as in repository (if different from version)
#[derive(Eq, PartialEq, Ord, PartialOrd, Clone, Debug, Serialize, Deserialize, new)]
pub struct Name(String);

impl Deref for Name {
    type Target = String;

    fn deref(&self) -> &Self::Target {
        &self.0
    }
}