Searched refs:orig (Results 1 – 1 of 1) sorted by relevance
901 let orig = Status::new(Code::OutOfRange, "weeaboo"); in from_error_status() localVariable902 let found = Status::from_error(Box::new(orig)); in from_error_status()910 let orig: BoxError = "peek-a-boo".into(); in from_error_unknown() localVariable911 let found = Status::from_error(orig); in from_error_unknown()919 let orig = Nested(Box::new(Status::new(Code::OutOfRange, "weeaboo"))); in from_error_nested() localVariable920 let found = Status::from_error(Box::new(orig)); in from_error_nested()931 let orig = h2::Error::from(h2::Reason::CANCEL); in from_error_h2() localVariable932 let found = Status::from_error(Box::new(orig)); in from_error_h2()946 let orig = Status::new(Code::Cancelled, "stop eet!"); in to_h2_error() localVariable947 let err = orig.to_h2_error(); in to_h2_error()