#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::bytes::Bytes;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::Did;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, CowStr, DefaultStr, FromStaticStr};
use jacquard_derive::IntoStatic;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetLaunchAsset<S: BosStr = DefaultStr> {
pub did: Did<S>,
pub platform: S,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetLaunchAssetOutput {
pub body: Bytes,
}
pub struct GetLaunchAssetResponse;
impl jacquard_common::xrpc::XrpcResp for GetLaunchAssetResponse {
const NSID: &'static str = "app.ocho.plugin.getLaunchAsset";
const ENCODING: &'static str = "text/javascript";
type Output<S: BosStr> = GetLaunchAssetOutput;
type Err = jacquard_common::xrpc::GenericError;
fn encode_output<S: BosStr>(
output: &Self::Output<S>,
) -> Result<Vec<u8>, jacquard_common::xrpc::EncodeError>
where
Self::Output<S>: Serialize,
{
Ok(output.body.to_vec())
}
fn decode_output<'de, S>(
body: &'de [u8],
) -> Result<Self::Output<S>, jacquard_common::error::DecodeError>
where
S: BosStr + Deserialize<'de>,
Self::Output<S>: Deserialize<'de>,
{
Ok(GetLaunchAssetOutput {
body: jacquard_common::deps::bytes::Bytes::copy_from_slice(body),
})
}
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetLaunchAsset<S> {
const NSID: &'static str = "app.ocho.plugin.getLaunchAsset";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetLaunchAssetResponse;
}
pub struct GetLaunchAssetRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetLaunchAssetRequest {
const PATH: &'static str = "/xrpc/app.ocho.plugin.getLaunchAsset";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetLaunchAsset<S>;
type Response = GetLaunchAssetResponse;
}
pub mod get_launch_asset_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Platform;
type Did;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Platform = Unset;
type Did = Unset;
}
pub struct SetPlatform<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetPlatform<St> {}
impl<St: State> State for SetPlatform<St> {
type Platform = Set<members::platform>;
type Did = St::Did;
}
pub struct SetDid<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetDid<St> {}
impl<St: State> State for SetDid<St> {
type Platform = St::Platform;
type Did = Set<members::did>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct platform(());
pub struct did(());
}
}
pub struct GetLaunchAssetBuilder<S: BosStr, St: get_launch_asset_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Did<S>>, Option<S>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> GetLaunchAsset<S> {
pub fn new() -> GetLaunchAssetBuilder<S, get_launch_asset_state::Empty> {
GetLaunchAssetBuilder::new()
}
}
impl<S: BosStr> GetLaunchAssetBuilder<S, get_launch_asset_state::Empty> {
pub fn new() -> Self {
GetLaunchAssetBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetLaunchAssetBuilder<S, St>
where
St: get_launch_asset_state::State,
St::Did: get_launch_asset_state::IsUnset,
{
pub fn did(
mut self,
value: impl Into<Did<S>>,
) -> GetLaunchAssetBuilder<S, get_launch_asset_state::SetDid<St>> {
self._fields.0 = Option::Some(value.into());
GetLaunchAssetBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetLaunchAssetBuilder<S, St>
where
St: get_launch_asset_state::State,
St::Platform: get_launch_asset_state::IsUnset,
{
pub fn platform(
mut self,
value: impl Into<S>,
) -> GetLaunchAssetBuilder<S, get_launch_asset_state::SetPlatform<St>> {
self._fields.1 = Option::Some(value.into());
GetLaunchAssetBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetLaunchAssetBuilder<S, St>
where
St: get_launch_asset_state::State,
St::Platform: get_launch_asset_state::IsSet,
St::Did: get_launch_asset_state::IsSet,
{
pub fn build(self) -> GetLaunchAsset<S> {
GetLaunchAsset {
did: self._fields.0.unwrap(),
platform: self._fields.1.unwrap(),
}
}
}