use crate::err::Error; use crate::sql::thing::Thing; use crate::sql::value::Value; pub fn id((arg,): (Thing,)) -> Result { Ok(arg.id.into()) } pub fn tb((arg,): (Thing,)) -> Result { Ok(arg.tb.into()) }