pub enum Category {
Show 13 variants
Debug,
Cast,
Io,
Parse,
Random,
Comptime,
Platform,
Pointer,
Syscall,
Iteration,
Slice,
Vec,
Meta,
}Expand description
High-level grouping used when rendering the documentation reference page.
Variants§
Implementations§
Source§impl Category
impl Category
Sourcepub const RENDER_ORDER: &'static [Category]
pub const RENDER_ORDER: &'static [Category]
Canonical render order for the documentation reference page. The
quick-reference table groups rows by category in this order, and the
per-category detail sections appear in the same order. Adding a new
Category variant requires extending this list — the test
category_render_order_is_exhaustive enforces that every variant
appears exactly once.
Trait Implementations§
impl Copy for Category
impl Eq for Category
impl StructuralPartialEq for Category
Auto Trait Implementations§
impl Freeze for Category
impl RefUnwindSafe for Category
impl Send for Category
impl Sync for Category
impl Unpin for Category
impl UnsafeUnpin for Category
impl UnwindSafe for Category
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more