#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::types::string::Did;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::app_ocho::plugin::Manifest;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetManifest<'a> {
#[serde(borrow)]
pub did: Did<'a>,
#[serde(borrow)]
pub platform: CowStr<'a>,
}
#[jacquard_derive::lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetManifestOutput<'a> {
#[serde(flatten)]
#[serde(borrow)]
pub value: Manifest<'a>,
}
pub struct GetManifestResponse;
impl jacquard_common::xrpc::XrpcResp for GetManifestResponse {
const NSID: &'static str = "app.ocho.plugin.getManifest";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetManifestOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetManifest<'a> {
const NSID: &'static str = "app.ocho.plugin.getManifest";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetManifestResponse;
}
pub struct GetManifestRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetManifestRequest {
const PATH: &'static str = "/xrpc/app.ocho.plugin.getManifest";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetManifest<'de>;
type Response = GetManifestResponse;
}
pub mod get_manifest_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 Platform;
type Did;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Platform = Unset;
type Did = Unset;
}
pub struct SetPlatform<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetPlatform<S> {}
impl<S: State> State for SetPlatform<S> {
type Platform = Set<members::platform>;
type Did = S::Did;
}
pub struct SetDid<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetDid<S> {}
impl<S: State> State for SetDid<S> {
type Platform = S::Platform;
type Did = Set<members::did>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct platform(());
pub struct did(());
}
}
pub struct GetManifestBuilder<'a, S: get_manifest_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Did<'a>>, Option<CowStr<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetManifest<'a> {
pub fn new() -> GetManifestBuilder<'a, get_manifest_state::Empty> {
GetManifestBuilder::new()
}
}
impl<'a> GetManifestBuilder<'a, get_manifest_state::Empty> {
pub fn new() -> Self {
GetManifestBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetManifestBuilder<'a, S>
where
S: get_manifest_state::State,
S::Did: get_manifest_state::IsUnset,
{
pub fn did(
mut self,
value: impl Into<Did<'a>>,
) -> GetManifestBuilder<'a, get_manifest_state::SetDid<S>> {
self._fields.0 = Option::Some(value.into());
GetManifestBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetManifestBuilder<'a, S>
where
S: get_manifest_state::State,
S::Platform: get_manifest_state::IsUnset,
{
pub fn platform(
mut self,
value: impl Into<CowStr<'a>>,
) -> GetManifestBuilder<'a, get_manifest_state::SetPlatform<S>> {
self._fields.1 = Option::Some(value.into());
GetManifestBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetManifestBuilder<'a, S>
where
S: get_manifest_state::State,
S::Platform: get_manifest_state::IsSet,
S::Did: get_manifest_state::IsSet,
{
pub fn build(self) -> GetManifest<'a> {
GetManifest {
did: self._fields.0.unwrap(),
platform: self._fields.1.unwrap(),
}
}
}