pub trait Revset<'repo>: ToPredicateFn<'repo> {
    // Required method
    fn iter<'revset>(&'revset self) -> RevsetIterator<'revset, 'repo> ;

    // Provided method
    fn is_empty(&self) -> bool { ... }
}

Required Methods§

source

fn iter<'revset>(&'revset self) -> RevsetIterator<'revset, 'repo>

Provided Methods§

source

fn is_empty(&self) -> bool

Implementors§