Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rust-trait « t4018 « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea397f09ed1625bb443d6fec250c9b405ee96efb (plain)
1
2
3
4
5
unsafe trait RIGHT<T> {
    fn len(&self) -> u32;
    fn ChangeMe(&self, n: u32) -> T;
    fn iter<F>(&self, f: F) where F: Fn(T);
}