MCPcopy Create free account
hub / github.com/aws/amazon-q-developer-cli / Error

Enum Error

crates/chat-cli/src/cli/chat/parse.rs:52–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50
51#[derive(Debug, thiserror::Error)]
52pub enum Error<'a> {
53 #[error(transparent)]
54 Stdio(#[from] std::io::Error),
55 #[error("parse error {1}, input {0}")]
56 Winnow(Partial<&'a str>, ErrorKind),
57}
58
59impl<'a> ParserError<Partial<&'a str>> for Error<'a> {
60 fn from_error_kind(input: &Partial<&'a str>, kind: ErrorKind) -> Self {

Callers 6

execute_operationMethod · 0.50
handle_addMethod · 0.50
handle_removeMethod · 0.50
handle_updateMethod · 0.50
handle_clearMethod · 0.50
handle_cancelMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected