#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::app_rocksky::shout::ShoutView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct RemoveShoutParams<'a> {
#[serde(borrow)]
pub id: CowStr<'a>,
}
#[jacquard_derive::lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct RemoveShoutOutput<'a> {
#[serde(flatten)]
#[serde(borrow)]
pub value: ShoutView<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Copy)]
pub struct RemoveShout;
pub struct RemoveShoutResponse;
impl jacquard_common::xrpc::XrpcResp for RemoveShoutResponse {
const NSID: &'static str = "app.rocksky.shout.removeShout";
const ENCODING: &'static str = "application/json";
type Output<'de> = RemoveShoutOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl jacquard_common::xrpc::XrpcRequest for RemoveShout {
const NSID: &'static str = "app.rocksky.shout.removeShout";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = RemoveShoutResponse;
}
pub struct RemoveShoutRequest;
impl jacquard_common::xrpc::XrpcEndpoint for RemoveShoutRequest {
const PATH: &'static str = "/xrpc/app.rocksky.shout.removeShout";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<'de> = RemoveShout;
type Response = RemoveShoutResponse;
}
pub mod remove_shout_params_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 Id;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Id = Unset;
}
pub struct SetId<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetId<S> {}
impl<S: State> State for SetId<S> {
type Id = Set<members::id>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct id(());
}
}
pub struct RemoveShoutParamsBuilder<'a, S: remove_shout_params_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> RemoveShoutParams<'a> {
pub fn new() -> RemoveShoutParamsBuilder<'a, remove_shout_params_state::Empty> {
RemoveShoutParamsBuilder::new()
}
}
impl<'a> RemoveShoutParamsBuilder<'a, remove_shout_params_state::Empty> {
pub fn new() -> Self {
RemoveShoutParamsBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S> RemoveShoutParamsBuilder<'a, S>
where
S: remove_shout_params_state::State,
S::Id: remove_shout_params_state::IsUnset,
{
pub fn id(
mut self,
value: impl Into<CowStr<'a>>,
) -> RemoveShoutParamsBuilder<'a, remove_shout_params_state::SetId<S>> {
self._fields.0 = Option::Some(value.into());
RemoveShoutParamsBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> RemoveShoutParamsBuilder<'a, S>
where
S: remove_shout_params_state::State,
S::Id: remove_shout_params_state::IsSet,
{
pub fn build(self) -> RemoveShoutParams<'a> {
RemoveShoutParams {
id: self._fields.0.unwrap(),
}
}
}