Lines Matching defs:AttrValue
21 pub value: Option<AttrValue>,
53 pub fn value_or_abort(&self) -> Result<&AttrValue, syn::Error> {
62 AttrValue::LitStr(tokens) => Ok(tokens),
63 AttrValue::Expr(_) | AttrValue::Call(_) => {
113 Some(AttrValue::LitStr(lit))
116 Ok(expr) => Some(AttrValue::Expr(expr)),
130 Some(AttrValue::Call(Vec::from_iter(method_args)))
175 pub enum AttrValue {
181 impl ToTokens for AttrValue {