// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: tools.ozone.set.deleteSet // // This file was automatically generated from Lexicon schemas. // Any manual changes will be overwritten on the next regeneration. #[jacquard_derive::lexicon] #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, jacquard_derive::IntoStatic, Default )] #[serde(rename_all = "camelCase")] pub struct DeleteSet<'a> { /// Name of the set to delete #[serde(borrow)] pub name: jacquard_common::CowStr<'a>, } #[jacquard_derive::lexicon] #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, jacquard_derive::IntoStatic, Default )] #[serde(rename_all = "camelCase")] pub struct DeleteSetOutput<'a> {} #[jacquard_derive::open_union] #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, thiserror::Error, miette::Diagnostic, jacquard_derive::IntoStatic )] #[serde(tag = "error", content = "message")] #[serde(bound(deserialize = "'de: 'a"))] pub enum DeleteSetError<'a> { /// set with the given name does not exist #[serde(rename = "SetNotFound")] SetNotFound(std::option::Option), } impl std::fmt::Display for DeleteSetError<'_> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { match self { Self::SetNotFound(msg) => { write!(f, "SetNotFound")?; if let Some(msg) = msg { write!(f, ": {}", msg)?; } Ok(()) } Self::Unknown(err) => write!(f, "Unknown error: {:?}", err), } } } ///Response type for ///tools.ozone.set.deleteSet pub struct DeleteSetResponse; impl jacquard_common::xrpc::XrpcResp for DeleteSetResponse { const NSID: &'static str = "tools.ozone.set.deleteSet"; const ENCODING: &'static str = "application/json"; type Output<'de> = DeleteSetOutput<'de>; type Err<'de> = DeleteSetError<'de>; } impl<'a> jacquard_common::xrpc::XrpcRequest for DeleteSet<'a> { const NSID: &'static str = "tools.ozone.set.deleteSet"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Response = DeleteSetResponse; } ///Endpoint type for ///tools.ozone.set.deleteSet pub struct DeleteSetRequest; impl jacquard_common::xrpc::XrpcEndpoint for DeleteSetRequest { const PATH: &'static str = "/xrpc/tools.ozone.set.deleteSet"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Request<'de> = DeleteSet<'de>; type Response = DeleteSetResponse; }