use serde::{Deserialize, Serialize};
use std::fmt;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct WorkspaceId(pub i64);
impl fmt::Display for WorkspaceId {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.0)
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct User {
pub email: String,
pub fullname: String,
pub default_workspace_id: WorkspaceId,
pub timezone: String,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Workspace {
pub id: WorkspaceId,
pub name: String,
}
impl fmt::Display for Workspace {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "#{} {}", self.id, self.name)
}
}
impl fmt::Display for User {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
writeln!(f, "Name: {}", self.fullname)?;
writeln!(f, "Email: {}", self.email)?;
writeln!(f, "Workspace: {}", self.default_workspace_id)?;
write!(f, "Timezone: {}", self.timezone)
}
}