Brad Gibson

Results 26 issues of Brad Gibson

I'm getting: ```rust error: proc-macro derive panicked --> chal/src/error.rs:3:10 | 3 | #[derive(Fail, Debug, PartialEq)] | ^^^^ | = help: message: Couldn't find a field with this name! ``` I...

I have a test suite set up as follows: ```rust #[test] fn tests() { TestRunner::new() .set_module_path(module_path!()) .set_attributes(TestRunnerAttributes.disable_final_stats | TestRunnerAttributes.minimize_output) .set_time_unit(TestRunnerTimeUnits.microseconds) .run_tests(vec![ TestCase::new("App::run()", "yields arch width", Box::new(|_logger: &mut Logger| -> TestCaseStatus...

per https://www.reddit.com/r/rust/comments/v6rx10/comment/ibhbcsv/?utm_source=reddit&utm_medium=web2x&context=3

Older eyes, here, but the typeface used in Monaco renders smaller than `ace` (even if it is advertised as the same point size). Embiggening the whole page makes the playground...

@japaric, I just wanted to send you some love for this work. Wow. You've answered so many of my questions, saving me countless hours as well as for who knows...

Given the following trait: ```rust pub trait Chal { fn set_mech_brakes(&self, amt: BrakeAmt) -> &Self; fn mech_brakes(&self) -> BrakeAmt; } ``` I have tried: ```rust mock_trait!(ChalMock, set_brakes(BrakeAmt) -> &Self, brakes()...

…stc 1.32.0 on Ubuntu 18.04; updated instructions to remove .o; note output was also not as shown--corrected as well. If this PR is accepted we should update the app.nm `#include`,...

S-waiting-on-review
T-resources

If one happens to have a standard profile set to unwinding panics, a `language item required, but not found: 'eh_personality'` will result. This PR adds a brief note explaining how...

S-waiting-on-review

If one happens to have a `Cargo.toml` profile set to unwinding panics, a `language item required, but not found: 'eh_personality'` error will result. PR #42 adds a brief note explaining...

16.04 instructions did not work for me and some search results suggested this has changed for 18.04. Not sure if this is the best way now, but these instructions worked:...