“unwrap_or_else en óxido” Código de respuesta

unwrap_or_else en óxido

// 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 en óxido

// 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 en óxido

// 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

Respuestas similares a “unwrap_or_else en óxido”

Preguntas similares a “unwrap_or_else en óxido”

Más respuestas relacionadas con “unwrap_or_else en óxido” en Rust

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código