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