rocket_codegen 0.5.1

Procedural macros for the Rocket web framework.
Documentation
use std::hash::{Hash, Hasher};

use devise::{FromMeta, MetaItem, Result};
use proc_macro2::Span;

use crate::name::Name;
use crate::proc_macro_ext::StringLit;
use crate::http::uri;

impl Dynamic {
    pub fn is_wild(&self) -> bool {
        self.value == "_"
    }
}

impl FromMeta for Dynamic {
    fn from_meta(meta: &MetaItem) -> Result<Self> {
        let string = StringLit::from_meta(meta)?;
        let span = string.subspan(1..string.len() + 1);

        // We don't allow `_`. We abuse `fmt::Query` to enforce this.
        Ok(Dynamic::parse::<fmt::Query>(&string, span)?)
    }
}

impl PartialEq for Dynamic {
    fn eq(&self, other: &Dynamic) -> bool {
        self.value == other.value
    }
}

impl Eq for Dynamic {}

impl Hash for Dynamic {
    fn hash<H: Hasher>(&self, state: &mut H) {
        self.value.hash(state)
    }
}