1 2 3 4 5 6 7 8 9 10
pub struct Foo;
pub trait Bar {}
impl Bar for &Foo {}
/// hello
impl Foo {
pub fn foo() {}
}
/// bibib
impl Foo {}
1 2 3 4 5 6 7 8 9 10
pub struct Foo;
pub trait Bar {}
impl Bar for &Foo {}
/// hello
impl Foo {
pub fn foo() {}
}
/// bibib
impl Foo {}