47 lines
1.0 KiB
Rust
47 lines
1.0 KiB
Rust
use std::hash::{Hash, Hasher};
|
|
// use chrono::{DateTime, Utc};
|
|
use serde::{Deserialize, Serialize};
|
|
// use uuid::Uuid;
|
|
use sqlx::types::{Uuid, chrono::{{ DateTime, Utc}}};
|
|
|
|
#[derive(Debug, Clone, sqlx::FromRow, Serialize, Deserialize)]
|
|
pub struct Channel {
|
|
pub id: Uuid,
|
|
pub sub_server_id: Uuid,
|
|
pub channel_type: ChannelType,
|
|
pub name: String,
|
|
pub created_at: DateTime<Utc>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, sqlx::Type, Serialize, Deserialize)]
|
|
#[repr(i32)]
|
|
pub enum ChannelType {
|
|
Text = 0,
|
|
Voice = 1,
|
|
}
|
|
|
|
impl Channel {
|
|
pub fn new(sub_server_id: Uuid, channel_type: ChannelType, name: String) -> Self {
|
|
Self {
|
|
id: Uuid::new_v4(),
|
|
sub_server_id,
|
|
channel_type,
|
|
name,
|
|
created_at: Utc::now(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl PartialEq for Channel {
|
|
fn eq(&self, other: &Self) -> bool {
|
|
self.id == other.id
|
|
}
|
|
}
|
|
|
|
impl Eq for Channel {}
|
|
|
|
impl Hash for Channel {
|
|
fn hash<H: Hasher>(&self, state: &mut H) {
|
|
self.id.hash(state);
|
|
}
|
|
} |