pub struct DocEntry {
pub name: &'static str,
pub kind: DocKind,
pub since: &'static str,
pub stability: Stability,
pub body: &'static str,
}Expand description
One documentation entry, generated at build time.
Fields§
§name: &'static str§kind: DocKind§since: &'static str§stability: Stability§body: &'static strMarkdown body, ready to embed into a hover panel.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DocEntry
impl RefUnwindSafe for DocEntry
impl Send for DocEntry
impl Sync for DocEntry
impl Unpin for DocEntry
impl UnsafeUnpin for DocEntry
impl UnwindSafe for DocEntry
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