import { Some, None, Ok, Err, match, } from 'rust-option' let x = Some(2) let y = None let z = Ok(1) let w = Err('error') // Note: matches are exhaustive ...
確定! 回上一頁