문제 // TODO: Add a new error variant to `TicketNewError` for when the status string is invalid.// When calling `source` on an error of that variant, it should return a `ParseStatusError` rather than `None`.#[derive(Debug, thiserror::Error)]pub enum TicketNewError { #[error("Title cannot be empty")] TitleCannotBeEmpty , #[error("Title cannot be longer than 50 bytes")] TitleTooLong, ..
풀이impl TryFrom for Status { type Error = (); fn try_from(value: String) -> Result { match value.to_lowercase().as_str() { "todo" => Ok(Status::ToDo), "done" => Ok(Status::Done), "inprogress" => Ok(Status::InProgress), _ => Err(()), } }}impl TryFrom for Status { type Error = (); fn try_from(value: &str) -> Result { ma..
문제// TODO: Add `anyhow` as a dependency of this project.// Don't touch this import!// When you import a type (`Error`) from a dependency, the import path must start// with the crate name (`anyhow`, in this case).use anyhow::Error;풀이[package]name = "deps"version = "0.1.0"edition = "2021"[dependencies]anyhow = "1.0.97" Cargo.toml에 dependencies를 추가한다.
문제// This is a `main.rs` file, therefore `cargo` interprets this as the root of a binary target.// TODO: fix this broken import. Create a new library target in the `src` directory.// The library target should expose a public function named `hello_world` that takes no arguments// and returns nothing.use packages::hello_world;// This is the entrypoint of the binary.fn main() { hello_world()..
내 블로그 - 관리자 홈 전환 |
Q
Q
|
---|---|
새 글 쓰기 |
W
W
|
글 수정 (권한 있는 경우) |
E
E
|
---|---|
댓글 영역으로 이동 |
C
C
|
이 페이지의 URL 복사 |
S
S
|
---|---|
맨 위로 이동 |
T
T
|
티스토리 홈 이동 |
H
H
|
단축키 안내 |
Shift + /
⇧ + /
|
* 단축키는 한글/영문 대소문자로 이용 가능하며, 티스토리 기본 도메인에서만 동작합니다.