Sign in
rust
/
rust
/
6d2e82b254fef19f51a45cf92c62e2b8d3ce3c6c
/
.
/
tests
/
rustdoc-js
/
trait-methods.rs
blob: c88f5edfd55b7c146394107726537db9b030e4b5 [
file
]
pub
trait
MyTrait
{
type
Item
;
fn
next
(&
mut
self
)
->
Option
<
Self
::
Item
>;
}