“UnWrap_or_else в ржавчине” Ответ

UnWrap_or_else в ржавчине

// You can use .unwrap_or_else method instead of Result enum

use std::path::Path;
use std::fs;

fn main() {
  let path = Path::new("hello.txt");
  let content = String::from("hello world");

  fs::write(path, content).unwrap_or_else(|error| {
      panic!("an error occurred while writing the file: {}", error)
  })
}
Ahmad Khaefi

UnWrap_or_else в ржавчине

// You can use .unwrap_or_else method instead of Result enum

use std::path::Path;
use std::fs;

fn main() {
  let path = Path::new("hello.txt");
  let content = String::from("hello world");

  fs::write(path, content).unwrap_or_else(|error| {
      panic!("an error occurred while writing the file: {}", error)
  })
}
Ahmad Khaefi

UnWrap_or_else в ржавчине

// You can use .unwrap_or_else method instead of Result enum

use std::path::Path;
use std::fs;

fn main() {
  let path = Path::new("hello.txt");
  let content = String::from("hello world");

  fs::write(path, content).unwrap_or_else(|error| {
      panic!("an error occurred while writing the file: {}", error)
  })
}
Ahmad Khaefi

Ответы похожие на “UnWrap_or_else в ржавчине”

Вопросы похожие на “UnWrap_or_else в ржавчине”

Больше похожих ответов на “UnWrap_or_else в ржавчине” по Rust

Смотреть популярные ответы по языку

Смотреть другие языки программирования