use crate::de::Error;
use spacetimedb_sats::{impl_deserialize, impl_serialize, impl_st, AlgebraicType};
use std::borrow::Cow;
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum StAccess {
Public,
Private,
}
#[cfg(feature = "memory-usage")]
impl spacetimedb_memory_usage::MemoryUsage for StAccess {}
impl StAccess {
pub fn as_str(&self) -> &'static str {
match self {
Self::Public => "public",
Self::Private => "private",
}
}
}
impl<'a> TryFrom<&'a str> for StAccess {
type Error = &'a str;
fn try_from(value: &'a str) -> Result<Self, Self::Error> {
Ok(match value {
"public" => Self::Public,
"private" => Self::Private,
x => return Err(x),
})
}
}
impl_serialize!([] StAccess, (self, ser) => ser.serialize_str(self.as_str()));
impl_deserialize!([] StAccess, de => {
let value = Cow::<'_, str>::deserialize(de)?;
StAccess::try_from(&*value).map_err(|x| {
Error::custom(format!(
"DecodeError for StAccess: `{x}`. Expected `public` | 'private'"
))
})
});
impl_st!([] StAccess, AlgebraicType::String);
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum StTableType {
System,
User,
}
impl StTableType {
pub fn as_str(&self) -> &'static str {
match self {
Self::System => "system",
Self::User => "user",
}
}
}
impl<'a> TryFrom<&'a str> for StTableType {
type Error = &'a str;
fn try_from(value: &'a str) -> Result<Self, Self::Error> {
Ok(match value {
"system" => Self::System,
"user" => Self::User,
x => return Err(x),
})
}
}
impl_serialize!([] StTableType, (self, ser) => ser.serialize_str(self.as_str()));
impl_deserialize!([] StTableType, de => {
let value = Cow::<'_, str>::deserialize(de)?;
StTableType::try_from(&*value).map_err(|x| {
Error::custom(format!(
"DecodeError for StTableType: `{x}`. Expected 'system' | 'user'"
))
})
});
impl_st!([] StTableType, AlgebraicType::String);