์ค๋ฅํ์ ๋ณํ
use std::error::Error; use std::fmt::{self, Display, Formatter}; use std::fs::{self, File}; use std::io::{self, Read}; #[derive(Debug)] enum ReadUsernameError { IoError(io::Error), EmptyUsername(String), } impl Error for ReadUsernameError {} impl Display for ReadUsernameError { fn fmt(&self, f: &mut Formatter) -> fmt::Result { match self { Self::IoError(e) => write!(f, "IO error: {e}"), Self::EmptyUsername(filename) => write!(f, "Found no username in {filename}"), } } } impl From<io::Error> for ReadUsernameError { fn from(err: io::Error) -> ReadUsernameError { ReadUsernameError::IoError(err) } } fn read_username(path: &str) -> Result<String, ReadUsernameError> { let mut username = String::with_capacity(100); File::open(path)?.read_to_string(&mut username)?; if username.is_empty() { return Err(ReadUsernameError::EmptyUsername(String::from(path))); } Ok(username) } fn main() { //fs::write("config.dat", "").unwrap(); let username = read_username("config.dat"); println!("username or error: {username:?}"); }
ํค ํฌ์ธํธ:
username
๋ณ์๋Ok(string)
์ด๊ฑฐ๋Err(error)
์ผ ์ ์์ต๋๋ค.fs::write
๋ฉ์๋๋ฅผ ์ฌ์ฉํ์ฌ ํ์ผ์ด ์๊ฑฐ๋, ๋น์๊ฑฐ๋, ์ค๋ณต๋๋ ๊ฒฝ์ฐ ๋ฑ์ ํ ์คํธํด ๋ด ๋๋ค.
๋ชจ๋ ์๋ฌ ํ์
(no_std
์ด์ด์ผ ํ๋ ์๋ฌ ํ์
์ ์ ์ธํ๊ณ )์ ๋ํด std::error::Error
๋ฅผ ๊ตฌํํ๋ ๊ฒ์ ์ข์ ์ต๊ด์
๋๋ค. std::error::Error
๋ฅผ ๊ตฌํํ๋ค๋ ๊ฒ์ Debug
์ Display
๋ ๊ตฌํํ๋ค๋ ๊ฒ์
๋๋ค. core
๋ฅผ ์ํ Error
ํฌ๋ ์ดํฌ๋ ๋์ดํ๋ฆฌ์๋ง ์ ๊ณต์ด ๋ฉ๋๋ค. ๊ทธ๋์ ์์ง no_std
ํ๊ฒฝ์์ ์ฌ์ฉํ ์๋ ์์ต๋๋ค.
๊ฐ๋ฅํ๋ค๋ฉด Clone
๊ณผ Eq
ํธ๋ ์๋ ๊ตฌํํ๋๋ก ํ์ธ์. ์ฌ๋ฌ๋ถ์ ๋ผ์ด๋ธ๋ฌ๋ฆฌ๊ฐ ํ
์คํธ ํ๊ธฐ ์ฌ์์ง๊ณ , ์ฌ์ฉํ๊ธฐ ์ข์์ง ๊ฒ๋๋ค. ๋ค๋ง, ์ด ์์ ์์๋ ๊ทธ๋ ๊ฒ ํ๊ธฐ ํ๋ญ๋๋ค. ์๋ํ๋ฉด io::Error
๋ ์ด ํธ๋ ์๋ค์ ๊ตฌํํ๊ณ ์์ง ์๊ธฐ ๋๋ฌธ์
๋๋ค.