Files
rustfs/ecstore/src/event/targetid.rs
T
2025-06-22 23:04:40 +08:00

11 lines
162 B
Rust

pub struct TargetID {
id: String,
name: String,
}
impl TargetID {
fn to_string(&self) -> String {
format!("{}:{}", self.id, self.name)
}
}