#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::types::string::AtUri;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::app_rocksky::feed::FeedView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetFeed<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cursor: Option<CowStr<'a>>,
#[serde(borrow)]
pub feed: AtUri<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
}
#[jacquard_derive::lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetFeedOutput<'a> {
#[serde(flatten)]
#[serde(borrow)]
pub value: FeedView<'a>,
}
pub struct GetFeedResponse;
impl jacquard_common::xrpc::XrpcResp for GetFeedResponse {
const NSID: &'static str = "app.rocksky.feed.getFeed";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetFeedOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetFeed<'a> {
const NSID: &'static str = "app.rocksky.feed.getFeed";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetFeedResponse;
}
pub struct GetFeedRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetFeedRequest {
const PATH: &'static str = "/xrpc/app.rocksky.feed.getFeed";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetFeed<'de>;
type Response = GetFeedResponse;
}
pub mod get_feed_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 Feed;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Feed = Unset;
}
pub struct SetFeed<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetFeed<S> {}
impl<S: State> State for SetFeed<S> {
type Feed = Set<members::feed>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct feed(());
}
}
pub struct GetFeedBuilder<'a, S: get_feed_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>, Option<AtUri<'a>>, Option<i64>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetFeed<'a> {
pub fn new() -> GetFeedBuilder<'a, get_feed_state::Empty> {
GetFeedBuilder::new()
}
}
impl<'a> GetFeedBuilder<'a, get_feed_state::Empty> {
pub fn new() -> Self {
GetFeedBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: get_feed_state::State> GetFeedBuilder<'a, S> {
pub fn cursor(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_cursor(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> GetFeedBuilder<'a, S>
where
S: get_feed_state::State,
S::Feed: get_feed_state::IsUnset,
{
pub fn feed(
mut self,
value: impl Into<AtUri<'a>>,
) -> GetFeedBuilder<'a, get_feed_state::SetFeed<S>> {
self._fields.1 = Option::Some(value.into());
GetFeedBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: get_feed_state::State> GetFeedBuilder<'a, S> {
pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> GetFeedBuilder<'a, S>
where
S: get_feed_state::State,
S::Feed: get_feed_state::IsSet,
{
pub fn build(self) -> GetFeed<'a> {
GetFeed {
cursor: self._fields.0,
feed: self._fields.1.unwrap(),
limit: self._fields.2,
}
}
}