#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::types::string::AtUri;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::social_showcase::CollectionView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetCollection<'a> {
#[serde(borrow)]
pub uri: AtUri<'a>,
}
#[jacquard_derive::lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetCollectionOutput<'a> {
#[serde(flatten)]
#[serde(borrow)]
pub value: CollectionView<'a>,
}
pub struct GetCollectionResponse;
impl jacquard_common::xrpc::XrpcResp for GetCollectionResponse {
const NSID: &'static str = "social.showcase.collection.getCollection";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetCollectionOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetCollection<'a> {
const NSID: &'static str = "social.showcase.collection.getCollection";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetCollectionResponse;
}
pub struct GetCollectionRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetCollectionRequest {
const PATH: &'static str = "/xrpc/social.showcase.collection.getCollection";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetCollection<'de>;
type Response = GetCollectionResponse;
}
pub mod get_collection_state {
pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Uri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uri = Unset;
}
pub struct SetUri<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUri<S> {}
impl<S: State> State for SetUri<S> {
type Uri = Set<members::uri>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uri(());
}
}
pub struct GetCollectionBuilder<'a, S: get_collection_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<AtUri<'a>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetCollection<'a> {
pub fn new() -> GetCollectionBuilder<'a, get_collection_state::Empty> {
GetCollectionBuilder::new()
}
}
impl<'a> GetCollectionBuilder<'a, get_collection_state::Empty> {
pub fn new() -> Self {
GetCollectionBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetCollectionBuilder<'a, S>
where
S: get_collection_state::State,
S::Uri: get_collection_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<'a>>,
) -> GetCollectionBuilder<'a, get_collection_state::SetUri<S>> {
self._fields.0 = Option::Some(value.into());
GetCollectionBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetCollectionBuilder<'a, S>
where
S: get_collection_state::State,
S::Uri: get_collection_state::IsSet,
{
pub fn build(self) -> GetCollection<'a> {
GetCollection {
uri: self._fields.0.unwrap(),
}
}
}