#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::types::string::AtUri;
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};
use crate::app_rocksky::scrobble::ScrobbleViewBasic;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetFeedSkeleton<'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>,
#[serde(skip_serializing_if = "Option::is_none")]
pub offset: Option<i64>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetFeedSkeletonOutput<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cursor: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub scrobbles: Option<Vec<ScrobbleViewBasic<'a>>>,
}
pub struct GetFeedSkeletonResponse;
impl jacquard_common::xrpc::XrpcResp for GetFeedSkeletonResponse {
const NSID: &'static str = "app.rocksky.feed.getFeedSkeleton";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetFeedSkeletonOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetFeedSkeleton<'a> {
const NSID: &'static str = "app.rocksky.feed.getFeedSkeleton";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetFeedSkeletonResponse;
}
pub struct GetFeedSkeletonRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetFeedSkeletonRequest {
const PATH: &'static str = "/xrpc/app.rocksky.feed.getFeedSkeleton";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetFeedSkeleton<'de>;
type Response = GetFeedSkeletonResponse;
}
pub mod get_feed_skeleton_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 GetFeedSkeletonBuilder<'a, S: get_feed_skeleton_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>, Option<AtUri<'a>>, Option<i64>, Option<i64>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetFeedSkeleton<'a> {
pub fn new() -> GetFeedSkeletonBuilder<'a, get_feed_skeleton_state::Empty> {
GetFeedSkeletonBuilder::new()
}
}
impl<'a> GetFeedSkeletonBuilder<'a, get_feed_skeleton_state::Empty> {
pub fn new() -> Self {
GetFeedSkeletonBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: get_feed_skeleton_state::State> GetFeedSkeletonBuilder<'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> GetFeedSkeletonBuilder<'a, S>
where
S: get_feed_skeleton_state::State,
S::Feed: get_feed_skeleton_state::IsUnset,
{
pub fn feed(
mut self,
value: impl Into<AtUri<'a>>,
) -> GetFeedSkeletonBuilder<'a, get_feed_skeleton_state::SetFeed<S>> {
self._fields.1 = Option::Some(value.into());
GetFeedSkeletonBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: get_feed_skeleton_state::State> GetFeedSkeletonBuilder<'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: get_feed_skeleton_state::State> GetFeedSkeletonBuilder<'a, S> {
pub fn offset(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_offset(mut self, value: Option<i64>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S> GetFeedSkeletonBuilder<'a, S>
where
S: get_feed_skeleton_state::State,
S::Feed: get_feed_skeleton_state::IsSet,
{
pub fn build(self) -> GetFeedSkeleton<'a> {
GetFeedSkeleton {
cursor: self._fields.0,
feed: self._fields.1.unwrap(),
limit: self._fields.2,
offset: self._fields.3,
}
}
}