pub trait BorrowByteRange<'a> {
    fn borrow_as_bytes(&'a self) -> BorrowedRange<'a>;
}
Expand description

Borrows a range.

Required methods

Returns a borrowed version of byte representation the original range.

Implementations on Foreign Types

Implementors