mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-18 10:43:15 +00:00
11 lines
162 B
Rust
11 lines
162 B
Rust
pub struct TargetID {
|
|
id: String,
|
|
name: String,
|
|
}
|
|
|
|
impl TargetID {
|
|
fn to_string(&self) -> String {
|
|
format!("{}:{}", self.id, self.name)
|
|
}
|
|
}
|