core::try! [-]  [+] [src]

macro_rules! try {
    ($e:expr) => (match $e { Ok(e) => e, Err(e) => return Err(e) })
}

Short circuiting evaluation on Err