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