// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: tools.ozone.set.deleteValues // // 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 )] #[serde(rename_all = "camelCase")] pub struct DeleteValues<'a> { /// Name of the set to delete values from #[serde(borrow)] pub name: jacquard_common::CowStr<'a>, /// Array of string values to delete from the set #[serde(borrow)] pub values: Vec>, } pub mod delete_values_state { pub use crate::builder_types::{Set, Unset, IsSet, IsUnset}; #[allow(unused)] use ::core::marker::PhantomData; mod sealed { pub trait Sealed {} } /// State trait tracking which required fields have been set pub trait State: sealed::Sealed { type Name; type Values; } /// Empty state - all required fields are unset pub struct Empty(()); impl sealed::Sealed for Empty {} impl State for Empty { type Name = Unset; type Values = Unset; } ///State transition - sets the `name` field to Set pub struct SetName(PhantomData S>); impl sealed::Sealed for SetName {} impl State for SetName { type Name = Set; type Values = S::Values; } ///State transition - sets the `values` field to Set pub struct SetValues(PhantomData S>); impl sealed::Sealed for SetValues {} impl State for SetValues { type Name = S::Name; type Values = Set; } /// Marker types for field names #[allow(non_camel_case_types)] pub mod members { ///Marker type for the `name` field pub struct name(()); ///Marker type for the `values` field pub struct values(()); } } /// Builder for constructing an instance of this type pub struct DeleteValuesBuilder<'a, S: delete_values_state::State> { _phantom_state: ::core::marker::PhantomData S>, __unsafe_private_named: ( ::core::option::Option>, ::core::option::Option>>, ), _phantom: ::core::marker::PhantomData<&'a ()>, } impl<'a> DeleteValues<'a> { /// Create a new builder for this type pub fn new() -> DeleteValuesBuilder<'a, delete_values_state::Empty> { DeleteValuesBuilder::new() } } impl<'a> DeleteValuesBuilder<'a, delete_values_state::Empty> { /// Create a new builder with all fields unset pub fn new() -> Self { DeleteValuesBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: (None, None), _phantom: ::core::marker::PhantomData, } } } impl<'a, S> DeleteValuesBuilder<'a, S> where S: delete_values_state::State, S::Name: delete_values_state::IsUnset, { /// Set the `name` field (required) pub fn name( mut self, value: impl Into>, ) -> DeleteValuesBuilder<'a, delete_values_state::SetName> { self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into()); DeleteValuesBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> DeleteValuesBuilder<'a, S> where S: delete_values_state::State, S::Values: delete_values_state::IsUnset, { /// Set the `values` field (required) pub fn values( mut self, value: impl Into>>, ) -> DeleteValuesBuilder<'a, delete_values_state::SetValues> { self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into()); DeleteValuesBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> DeleteValuesBuilder<'a, S> where S: delete_values_state::State, S::Name: delete_values_state::IsSet, S::Values: delete_values_state::IsSet, { /// Build the final struct pub fn build(self) -> DeleteValues<'a> { DeleteValues { name: self.__unsafe_private_named.0.unwrap(), values: self.__unsafe_private_named.1.unwrap(), extra_data: Default::default(), } } /// Build the final struct with custom extra_data pub fn build_with_data( self, extra_data: std::collections::BTreeMap< jacquard_common::smol_str::SmolStr, jacquard_common::types::value::Data<'a>, >, ) -> DeleteValues<'a> { DeleteValues { name: self.__unsafe_private_named.0.unwrap(), values: self.__unsafe_private_named.1.unwrap(), extra_data: Some(extra_data), } } } #[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 DeleteValuesError<'a> { /// set with the given name does not exist #[serde(rename = "SetNotFound")] SetNotFound(std::option::Option>), } impl core::fmt::Display for DeleteValuesError<'_> { fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::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.deleteValues pub struct DeleteValuesResponse; impl jacquard_common::xrpc::XrpcResp for DeleteValuesResponse { const NSID: &'static str = "tools.ozone.set.deleteValues"; const ENCODING: &'static str = "application/json"; type Output<'de> = (); type Err<'de> = DeleteValuesError<'de>; } impl<'a> jacquard_common::xrpc::XrpcRequest for DeleteValues<'a> { const NSID: &'static str = "tools.ozone.set.deleteValues"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Response = DeleteValuesResponse; } /// Endpoint type for ///tools.ozone.set.deleteValues pub struct DeleteValuesRequest; impl jacquard_common::xrpc::XrpcEndpoint for DeleteValuesRequest { const PATH: &'static str = "/xrpc/tools.ozone.set.deleteValues"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Request<'de> = DeleteValues<'de>; type Response = DeleteValuesResponse; }