sway icon indicating copy to clipboard operation
sway copied to clipboard

forc-doc implementations missing from sidebar and enums

Open sdankel opened this issue 9 months ago • 0 comments

Example:

pub enum TestEnum {
    TestVariant: (),
}

impl TestEnum {
    pub fn test_fn() {}
}

impl Eq for TestEnum {
    fn eq(self, other: Self) -> bool {
        true
    }
}

image

The implementations don't show up in the sidebar nor in the page.

For structs, the implementations don't show up in the sidebar.

sdankel avatar May 15 '24 22:05 sdankel