// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: app.bsky.labeler.getServices // // This file was automatically generated from Lexicon schemas. // Any manual changes will be overwritten on the next regeneration. #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, jacquard_derive::IntoStatic )] #[serde(rename_all = "camelCase")] pub struct GetServices<'a> { /// (default: false) #[serde(skip_serializing_if = "std::option::Option::is_none")] pub detailed: std::option::Option, #[serde(borrow)] pub dids: Vec>, } pub mod get_services_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 Dids; } /// Empty state - all required fields are unset pub struct Empty(()); impl sealed::Sealed for Empty {} impl State for Empty { type Dids = Unset; } ///State transition - sets the `dids` field to Set pub struct SetDids(PhantomData S>); impl sealed::Sealed for SetDids {} impl State for SetDids { type Dids = Set; } /// Marker types for field names #[allow(non_camel_case_types)] pub mod members { ///Marker type for the `dids` field pub struct dids(()); } } /// Builder for constructing an instance of this type pub struct GetServicesBuilder<'a, S: get_services_state::State> { _phantom_state: ::core::marker::PhantomData S>, __unsafe_private_named: ( ::core::option::Option, ::core::option::Option>>, ), _phantom: ::core::marker::PhantomData<&'a ()>, } impl<'a> GetServices<'a> { /// Create a new builder for this type pub fn new() -> GetServicesBuilder<'a, get_services_state::Empty> { GetServicesBuilder::new() } } impl<'a> GetServicesBuilder<'a, get_services_state::Empty> { /// Create a new builder with all fields unset pub fn new() -> Self { GetServicesBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: (None, None), _phantom: ::core::marker::PhantomData, } } } impl<'a, S: get_services_state::State> GetServicesBuilder<'a, S> { /// Set the `detailed` field (optional) pub fn detailed(mut self, value: impl Into>) -> Self { self.__unsafe_private_named.0 = value.into(); self } /// Set the `detailed` field to an Option value (optional) pub fn maybe_detailed(mut self, value: Option) -> Self { self.__unsafe_private_named.0 = value; self } } impl<'a, S> GetServicesBuilder<'a, S> where S: get_services_state::State, S::Dids: get_services_state::IsUnset, { /// Set the `dids` field (required) pub fn dids( mut self, value: impl Into>>, ) -> GetServicesBuilder<'a, get_services_state::SetDids> { self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into()); GetServicesBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> GetServicesBuilder<'a, S> where S: get_services_state::State, S::Dids: get_services_state::IsSet, { /// Build the final struct pub fn build(self) -> GetServices<'a> { GetServices { detailed: self.__unsafe_private_named.0, dids: self.__unsafe_private_named.1.unwrap(), } } } #[jacquard_derive::lexicon] #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, jacquard_derive::IntoStatic )] #[serde(rename_all = "camelCase")] pub struct GetServicesOutput<'a> { #[serde(borrow)] pub views: Vec>, } #[jacquard_derive::open_union] #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, jacquard_derive::IntoStatic )] #[serde(tag = "$type")] #[serde(bound(deserialize = "'de: 'a"))] pub enum GetServicesOutputViewsItem<'a> { #[serde(rename = "app.bsky.labeler.defs#labelerView")] LabelerView(Box>), #[serde(rename = "app.bsky.labeler.defs#labelerViewDetailed")] LabelerViewDetailed(Box>), } /// Response type for ///app.bsky.labeler.getServices pub struct GetServicesResponse; impl jacquard_common::xrpc::XrpcResp for GetServicesResponse { const NSID: &'static str = "app.bsky.labeler.getServices"; const ENCODING: &'static str = "application/json"; type Output<'de> = GetServicesOutput<'de>; type Err<'de> = jacquard_common::xrpc::GenericError<'de>; } impl<'a> jacquard_common::xrpc::XrpcRequest for GetServices<'a> { const NSID: &'static str = "app.bsky.labeler.getServices"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query; type Response = GetServicesResponse; } /// Endpoint type for ///app.bsky.labeler.getServices pub struct GetServicesRequest; impl jacquard_common::xrpc::XrpcEndpoint for GetServicesRequest { const PATH: &'static str = "/xrpc/app.bsky.labeler.getServices"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query; type Request<'de> = GetServices<'de>; type Response = GetServicesResponse; }