Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
pub use other::FooBar;
pub use other::foo;
mod other {
pub struct FooBar{value: isize}
impl FooBar{
pub fn new(val: isize) -> FooBar {
FooBar{value: val}
}
pub fn foo(){
1+1;