pub const TLB: Symbol = Symbol("tlb");
pub const VALIDATE_WITH: Symbol = Symbol("validate_with");
pub const TAG: Symbol = Symbol("tag");
pub const SINCE_TAG: Symbol = Symbol("since_tag");
#[derive(Copy, Clone)]
pub struct Symbol(&'static str);
impl PartialEq<Symbol> for syn::Ident {
fn eq(&self, other: &Symbol) -> bool {
self == other.0
}
}
impl PartialEq<Symbol> for &syn::Ident {
fn eq(&self, other: &Symbol) -> bool {
*self == other.0
}
}
impl PartialEq<Symbol> for syn::Path {
fn eq(&self, other: &Symbol) -> bool {
self.is_ident(other.0)
}
}
impl PartialEq<Symbol> for &syn::Path {
fn eq(&self, other: &Symbol) -> bool {
self.is_ident(other.0)
}
}
impl std::fmt::Display for Symbol {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
f.write_str(self.0)
}
}