blob: 7aeefdb39c34321d37c4acbd2ab4209fabb1b687 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
use std::fmt::Display;
#[derive(Debug,Clone)]
pub struct Uri {
pub content: String,
}
impl Display for Uri {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.content)?;
Ok(())
}
}
|