Note: This page contains multiple implementations.
Objects that implement the immutable subscript operator.
impl Index<RangeFrom<usize>> for ByteStr {
type Output = ByteStr;
}impl Index<RangeTo<usize>> for ByteStr {
type Output = ByteStr;
}impl Index<Range<usize>> for ByteStr {
type Output = ByteStr;
}impl Index<usize> for ByteStr {
type Output = u8;
}impl Index<RangeFull> for ByteStr {
type Output = ByteStr;
}