Files
not-python/runtime/src/obj/str.rs

12 lines
153 B
Rust
Raw Normal View History

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