mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Michele Sessa
f1656004ed
|
2 years ago | |
---|---|---|
.. | ||
README.md | 2 years ago |
README.md
format_me
Instructions
In this exercise you will implement the trait Display
for the structure Park
and the enum ParkType
.
Here are the public fields and possible variants for the two types:
Park
:name
asString
park_type
asParkType
address
asString
cap
asString
state
asString
ParkType
:Garden
Forest
Playground
Expected Functions and Structures
use std::fmt;
pub struct Park {}
pub enum ParkType {}
impl fmt::Display for Park {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {}
}
impl fmt::Display for ParkType {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {}
}
Usage
Here is a program to test your function:
use format_me::*;
fn main() {
println!(
"{}",
Park {
name: "Les Tuileries".to_string(),
park_type: ParkType::Garden,
address: "Pl. de la Concorde".to_string(),
cap: "75001".to_string(),
state: "France".to_string()
}
);
println!(
"{}",
Park {
name: "".to_string(),
park_type: ParkType::Playground,
address: "".to_string(),
cap: "".to_string(),
state: "".to_string()
}
);
}
And its output
$ cargo run
garden - Les Tuileries, Pl. de la Concorde, 75001 - France
playground - No name, No address, No cap - No state
$