1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
pub trait TextDocumentIdentifier {
    fn get_uri(&self) -> String;
    fn set_uri(&mut self, uri: String);
}

impl TextDocumentIdentifier for super::TextDocumentIdentifier {
    fn get_uri(&self) -> String {
        self.uri.to_owned()
    }

    fn set_uri(&mut self, uri: String) {
        self.uri = uri;
    }
}

impl TextDocumentIdentifier for super::VersionedTextDocumentIdentifier {
    fn get_uri(&self) -> String {
        self.uri.to_owned()
    }

    fn set_uri(&mut self, uri: String) {
        self.uri = uri;
    }
}