#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr};
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetPlaybackServer<S: BosStr = DefaultStr> {
pub stream: S,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetPlaybackServerOutput<S: BosStr = DefaultStr> {
pub servers: Vec<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(
Serialize,
Deserialize,
Debug,
Clone,
PartialEq,
Eq,
thiserror::Error,
miette::Diagnostic
)]
#[serde(tag = "error", content = "message")]
pub enum GetPlaybackServerError {
#[serde(untagged)]
Other { error: SmolStr, message: Option<SmolStr> },
}
impl core::fmt::Display for GetPlaybackServerError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::Other { error, message } => {
write!(f, "{}", error)?;
if let Some(msg) = message {
write!(f, ": {}", msg)?;
}
Ok(())
}
}
}
}
pub struct GetPlaybackServerResponse;
impl jacquard_common::xrpc::XrpcResp for GetPlaybackServerResponse {
const NSID: &'static str = "place.stream.playback.getPlaybackServer";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetPlaybackServerOutput<S>;
type Err = GetPlaybackServerError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetPlaybackServer<S> {
const NSID: &'static str = "place.stream.playback.getPlaybackServer";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetPlaybackServerResponse;
}
pub struct GetPlaybackServerRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetPlaybackServerRequest {
const PATH: &'static str = "/xrpc/place.stream.playback.getPlaybackServer";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetPlaybackServer<S>;
type Response = GetPlaybackServerResponse;
}
pub mod get_playback_server_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 Stream;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Stream = Unset;
}
pub struct SetStream<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetStream<St> {}
impl<St: State> State for SetStream<St> {
type Stream = Set<members::stream>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct stream(());
}
}
pub struct GetPlaybackServerBuilder<
St: get_playback_server_state::State,
S: BosStr = DefaultStr,
> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>,),
_type: PhantomData<fn() -> S>,
}
impl GetPlaybackServer<DefaultStr> {
pub fn new() -> GetPlaybackServerBuilder<
get_playback_server_state::Empty,
DefaultStr,
> {
GetPlaybackServerBuilder::new()
}
}
impl<S: BosStr> GetPlaybackServer<S> {
pub fn builder() -> GetPlaybackServerBuilder<get_playback_server_state::Empty, S> {
GetPlaybackServerBuilder::builder()
}
}
impl GetPlaybackServerBuilder<get_playback_server_state::Empty, DefaultStr> {
pub fn new() -> Self {
GetPlaybackServerBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr> GetPlaybackServerBuilder<get_playback_server_state::Empty, S> {
pub fn builder() -> Self {
GetPlaybackServerBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> GetPlaybackServerBuilder<St, S>
where
St: get_playback_server_state::State,
St::Stream: get_playback_server_state::IsUnset,
{
pub fn stream(
mut self,
value: impl Into<S>,
) -> GetPlaybackServerBuilder<get_playback_server_state::SetStream<St>, S> {
self._fields.0 = Option::Some(value.into());
GetPlaybackServerBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> GetPlaybackServerBuilder<St, S>
where
St: get_playback_server_state::State,
St::Stream: get_playback_server_state::IsSet,
{
pub fn build(self) -> GetPlaybackServer<S> {
GetPlaybackServer {
stream: self._fields.0.unwrap(),
}
}
}