Skip to content

Instantly share code, notes, and snippets.

@rust-play
rust-play / playground.rs
Created January 20, 2019 09:48
Code shared from the Rust Playground
#[derive(Debug)]
struct Config {
host: String,
target: String,
port: i32,
timeout: i32,
}
impl Default for Config {
fn default() -> Self {
@rust-play
rust-play / playground.rs
Created January 20, 2019 10:11
Code shared from the Rust Playground
#[derive(Debug)]
struct Server {
host: String,
target: String,
port: i32,
timeout: i32,
}
impl Default for Server {
fn default() -> Self {