use std::fmt;
use sea_orm::Value;
use crate::original_name::OriginalName;
#[derive(Debug, PartialEq, Eq, Clone, Hash)]
pub struct NormalizedName(String);
impl NormalizedName {
pub fn from_unchecked(name: String) -> Self {
NormalizedName(name)
}
pub fn from_unchecked_str(name: &str) -> Self {
NormalizedName(name.to_owned())
}
pub fn into_inner(self) -> String {
self.0
}
}
impl From<OriginalName> for NormalizedName {
fn from(name: OriginalName) -> Self {
NormalizedName(name.to_lowercase())
}
}
impl From<&OriginalName> for NormalizedName {
fn from(name: &OriginalName) -> Self {
NormalizedName(name.to_lowercase())
}
}
impl From<NormalizedName> for Value {
fn from(value: NormalizedName) -> Self {
Value::String(Some(value.0))
}
}
impl From<&NormalizedName> for Value {
fn from(value: &NormalizedName) -> Self {
Value::String(Some(value.0.clone()))
}
}
impl fmt::Display for NormalizedName {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.0)
}
}
impl std::ops::Deref for NormalizedName {
type Target = String;
fn deref(&self) -> &Self::Target {
&self.0
}
}