New
impl List {
// TODO, make code happen
}fn foo(arg1: Type1, arg2: Type2) -> ReturnType {
// body
}impl List {
pub fn new() -> Self {
List { head: Link::Empty }
}
}Last updated
impl List {
// TODO, make code happen
}fn foo(arg1: Type1, arg2: Type2) -> ReturnType {
// body
}impl List {
pub fn new() -> Self {
List { head: Link::Empty }
}
}Last updated