// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: tools.ozone.set.addValues // // 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 AddValues<'a> { /// Name of the set to add values to #[serde(borrow)] pub name: jacquard_common::CowStr<'a>, /// Array of string values to add to the set #[serde(borrow)] pub values: Vec>, } pub mod add_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 Values; type Name; } /// Empty state - all required fields are unset pub struct Empty(()); impl sealed::Sealed for Empty {} impl State for Empty { type Values = Unset; type Name = Unset; } ///State transition - sets the `values` field to Set pub struct SetValues(PhantomData S>); impl sealed::Sealed for SetValues {} impl State for SetValues { type Values = Set; type Name = S::Name; } ///State transition - sets the `name` field to Set pub struct SetName(PhantomData S>); impl sealed::Sealed for SetName {} impl State for SetName { type Values = S::Values; type Name = Set; } /// Marker types for field names #[allow(non_camel_case_types)] pub mod members { ///Marker type for the `values` field pub struct values(()); ///Marker type for the `name` field pub struct name(()); } } /// Builder for constructing an instance of this type pub struct AddValuesBuilder<'a, S: add_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> AddValues<'a> { /// Create a new builder for this type pub fn new() -> AddValuesBuilder<'a, add_values_state::Empty> { AddValuesBuilder::new() } } impl<'a> AddValuesBuilder<'a, add_values_state::Empty> { /// Create a new builder with all fields unset pub fn new() -> Self { AddValuesBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: (None, None), _phantom: ::core::marker::PhantomData, } } } impl<'a, S> AddValuesBuilder<'a, S> where S: add_values_state::State, S::Name: add_values_state::IsUnset, { /// Set the `name` field (required) pub fn name( mut self, value: impl Into>, ) -> AddValuesBuilder<'a, add_values_state::SetName> { self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into()); AddValuesBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> AddValuesBuilder<'a, S> where S: add_values_state::State, S::Values: add_values_state::IsUnset, { /// Set the `values` field (required) pub fn values( mut self, value: impl Into>>, ) -> AddValuesBuilder<'a, add_values_state::SetValues> { self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into()); AddValuesBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> AddValuesBuilder<'a, S> where S: add_values_state::State, S::Values: add_values_state::IsSet, S::Name: add_values_state::IsSet, { /// Build the final struct pub fn build(self) -> AddValues<'a> { AddValues { 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>, >, ) -> AddValues<'a> { AddValues { name: self.__unsafe_private_named.0.unwrap(), values: self.__unsafe_private_named.1.unwrap(), extra_data: Some(extra_data), } } } /// Response type for ///tools.ozone.set.addValues pub struct AddValuesResponse; impl jacquard_common::xrpc::XrpcResp for AddValuesResponse { const NSID: &'static str = "tools.ozone.set.addValues"; const ENCODING: &'static str = "application/json"; type Output<'de> = (); type Err<'de> = jacquard_common::xrpc::GenericError<'de>; } impl<'a> jacquard_common::xrpc::XrpcRequest for AddValues<'a> { const NSID: &'static str = "tools.ozone.set.addValues"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Response = AddValuesResponse; } /// Endpoint type for ///tools.ozone.set.addValues pub struct AddValuesRequest; impl jacquard_common::xrpc::XrpcEndpoint for AddValuesRequest { const PATH: &'static str = "/xrpc/tools.ozone.set.addValues"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure( "application/json", ); type Request<'de> = AddValues<'de>; type Response = AddValuesResponse; }