This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ rustup show | |
Default host: x86_64-unknown-linux-gnu | |
installed toolchains | |
-------------------- | |
stable-x86_64-unknown-linux-gnu | |
nightly-x86_64-unknown-linux-gnu (default) | |
active toolchain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- Generated with glade 3.18.3 --> | |
<interface> | |
<requires lib="gtk+" version="3.12"/> | |
<object class="GtkEntryCompletion" id="entrycompletion1"/> | |
<object class="GtkWindow" id="window"> | |
<property name="can_focus">False</property> | |
<property name="default_width">440</property> | |
<property name="default_height">250</property> | |
<child> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pub struct One<'a> { | |
foo: &'a f64, | |
bar: f64, | |
} | |
pub struct Two { | |
oof: f64, | |
rab: f64, | |
} |