pub trait SpanRange: Sized {
// Required method
fn into_range(self) -> Range<BytePos>;
}
Expand description
Conversion of a value into the range portion of a Span
.
Required Methods§
fn into_range(self) -> Range<BytePos>
Object Safety§
This trait is not object safe.