The match operator
match result {
Ok(content) => handle(content),
Err(error) => panic!("Can't deal with: {}", error),
}Last updated
match result {
Ok(content) => handle(content),
Err(error) => panic!("Can't deal with: {}", error),
}Last updated