pub trait RealStrRead: StrRead {
// Required method
fn pop_str(&mut self) -> Option<&str>;
}
Expand description
Represent anything that pops out &str
.
pub trait RealStrRead: StrRead {
// Required method
fn pop_str(&mut self) -> Option<&str>;
}
Represent anything that pops out &str
.