#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::app_rocksky::song::SongViewDetailed;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct MatchSong<'a> {
#[serde(borrow)]
pub artist: CowStr<'a>,
#[serde(borrow)]
pub title: CowStr<'a>,
}
#[jacquard_derive::lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct MatchSongOutput<'a> {
#[serde(flatten)]
#[serde(borrow)]
pub value: SongViewDetailed<'a>,
}
pub struct MatchSongResponse;
impl jacquard_common::xrpc::XrpcResp for MatchSongResponse {
const NSID: &'static str = "app.rocksky.song.matchSong";
const ENCODING: &'static str = "application/json";
type Output<'de> = MatchSongOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for MatchSong<'a> {
const NSID: &'static str = "app.rocksky.song.matchSong";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = MatchSongResponse;
}
pub struct MatchSongRequest;
impl jacquard_common::xrpc::XrpcEndpoint for MatchSongRequest {
const PATH: &'static str = "/xrpc/app.rocksky.song.matchSong";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = MatchSong<'de>;
type Response = MatchSongResponse;
}
pub mod match_song_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 Title;
type Artist;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Title = Unset;
type Artist = Unset;
}
pub struct SetTitle<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetTitle<S> {}
impl<S: State> State for SetTitle<S> {
type Title = Set<members::title>;
type Artist = S::Artist;
}
pub struct SetArtist<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetArtist<S> {}
impl<S: State> State for SetArtist<S> {
type Title = S::Title;
type Artist = Set<members::artist>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct title(());
pub struct artist(());
}
}
pub struct MatchSongBuilder<'a, S: match_song_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>, Option<CowStr<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> MatchSong<'a> {
pub fn new() -> MatchSongBuilder<'a, match_song_state::Empty> {
MatchSongBuilder::new()
}
}
impl<'a> MatchSongBuilder<'a, match_song_state::Empty> {
pub fn new() -> Self {
MatchSongBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> MatchSongBuilder<'a, S>
where
S: match_song_state::State,
S::Artist: match_song_state::IsUnset,
{
pub fn artist(
mut self,
value: impl Into<CowStr<'a>>,
) -> MatchSongBuilder<'a, match_song_state::SetArtist<S>> {
self._fields.0 = Option::Some(value.into());
MatchSongBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> MatchSongBuilder<'a, S>
where
S: match_song_state::State,
S::Title: match_song_state::IsUnset,
{
pub fn title(
mut self,
value: impl Into<CowStr<'a>>,
) -> MatchSongBuilder<'a, match_song_state::SetTitle<S>> {
self._fields.1 = Option::Some(value.into());
MatchSongBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> MatchSongBuilder<'a, S>
where
S: match_song_state::State,
S::Title: match_song_state::IsSet,
S::Artist: match_song_state::IsSet,
{
pub fn build(self) -> MatchSong<'a> {
MatchSong {
artist: self._fields.0.unwrap(),
title: self._fields.1.unwrap(),
}
}
}