use serde::{Deserialize, Serialize};
use std::fmt;
use super::WorkspaceId;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub struct TagId(pub i64);
impl fmt::Display for TagId {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.0)
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Tag {
pub id: TagId,
pub workspace_id: WorkspaceId,
pub name: String,
}
impl fmt::Display for Tag {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "#{} {}", self.id, self.name)
}
}