use crate::obj::prelude::*; use shredder::Scan; #[derive(Debug, Scan)] pub struct Str { value: String, attrs: Attrs, } impl_obj!(Str, attrs);