aboutsummaryrefslogtreecommitdiff
path: root/crates/ide_db/src/label.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-08-18 15:41:21 +0100
committerAleksey Kladov <[email protected]>2020-08-18 15:50:07 +0100
commitaa1a7a5414e59c7f1c6e74002df1b6a04937459e (patch)
tree6d112b6a8614138ebffa8bef0b27d90f8ef2cef9 /crates/ide_db/src/label.rs
parenteb81731600d1bc50efc00e32b9fc2244a2af52ad (diff)
Introduce Label
Diffstat (limited to 'crates/ide_db/src/label.rs')
-rw-r--r--crates/ide_db/src/label.rs49
1 files changed, 49 insertions, 0 deletions
diff --git a/crates/ide_db/src/label.rs b/crates/ide_db/src/label.rs
new file mode 100644
index 000000000..c0e89e72f
--- /dev/null
+++ b/crates/ide_db/src/label.rs
@@ -0,0 +1,49 @@
1//! See `Label`
2use std::fmt;
3
4/// A type to specify UI label, like an entry in the list of assists. Enforces
5/// proper casing:
6///
7/// Frobnicate bar
8///
9/// Note the upper-case first letter and the absence of `.` at the end.
10#[derive(Clone)]
11pub struct Label(String);
12
13impl PartialEq<str> for Label {
14 fn eq(&self, other: &str) -> bool {
15 self.0 == other
16 }
17}
18
19impl PartialEq<&'_ str> for Label {
20 fn eq(&self, other: &&str) -> bool {
21 self == *other
22 }
23}
24
25impl From<Label> for String {
26 fn from(label: Label) -> String {
27 label.0
28 }
29}
30
31impl Label {
32 pub fn new(label: impl Into<String>) -> Label {
33 let label = label.into();
34 assert!(label.starts_with(char::is_uppercase) && !label.ends_with('.'));
35 Label(label)
36 }
37}
38
39impl fmt::Display for Label {
40 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
41 fmt::Display::fmt(&self.0, f)
42 }
43}
44
45impl fmt::Debug for Label {
46 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
47 fmt::Debug::fmt(&self.0, f)
48 }
49}