Option๊ณผ Result

์ด ํƒ€์ž…์€ ์„ ํƒ์  ๋ฐ์ดํ„ฐ๋ฅผ ๋‚˜ํƒ€๋ƒ…๋‹ˆ๋‹ค:

fn main() {
    let numbers = vec![10, 20, 30];
    let first: Option<&i8> = numbers.first();
    println!("first: {first:?}");

    let arr: Result<[i8; 3], Vec<i8>> = numbers.try_into();
    println!("arr: {arr:?}");
}
  • Option๊ณผ Result๋Š” ํ‘œ์ค€ ๋ผ์ด๋ธŒ๋Ÿฌ๋ฆฌ๋ฟ๋งŒ์•„๋‹ˆ๋ผ ๋งค์šฐ ๊ด‘๋ฒ”์œ„ํ•˜๊ฒŒ ์‚ฌ์šฉ๋˜๋Š” ํƒ€์ž…์ž…๋‹ˆ๋‹ค.
  • Option<&T> ๋Š” &T์— ๋น„ํ•ด ๊ณต๊ฐ„ ์˜ค๋ฒ„ํ—ค๋“œ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค.
  • Result๋Š” ์˜ค๋ฅ˜ ์ฒ˜๋ฆฌ๋ฅผ ์œ„ํ•œ ํ‘œ์ค€ ํƒ€์ž…์ž…๋‹ˆ๋‹ค. 3์ผ์ฐจ ๊ณผ์ •์—์„œ ์‚ดํŽด๋ด…๋‹ˆ๋‹ค.
  • try_into attempts to convert the vector into a fixed-sized array. This can fail:
    • If the vector has the right size, Result::Ok is returned with the array.
    • Otherwise, Result::Err is returned with the original vector.