“Unwrrap_or_else em ferrugem” Respostas de código

Unwrrap_or_else em ferrugem

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

Unwrrap_or_else em ferrugem

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

Unwrrap_or_else em ferrugem

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

Respostas semelhantes a “Unwrrap_or_else em ferrugem”

Perguntas semelhantes a “Unwrrap_or_else em ferrugem”

Mais respostas relacionadas para “Unwrrap_or_else em ferrugem” em Rust

Procure respostas de código populares por idioma

Procurar outros idiomas de código