#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GoogleCallback<'a> {
#[serde(borrow)]
pub code: CowStr<'a>,
#[serde(borrow)]
pub state: CowStr<'a>,
}
pub struct GoogleCallbackResponse;
impl jacquard_common::xrpc::XrpcResp for GoogleCallbackResponse {
const NSID: &'static str = "app.ocho.auth.googleCallback";
const ENCODING: &'static str = "application/json";
type Output<'de> = ();
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GoogleCallback<'a> {
const NSID: &'static str = "app.ocho.auth.googleCallback";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GoogleCallbackResponse;
}
pub struct GoogleCallbackRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GoogleCallbackRequest {
const PATH: &'static str = "/xrpc/app.ocho.auth.googleCallback";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GoogleCallback<'de>;
type Response = GoogleCallbackResponse;
}
pub mod google_callback_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 Code;
type State;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Code = Unset;
type State = Unset;
}
pub struct SetCode<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCode<S> {}
impl<S: State> State for SetCode<S> {
type Code = Set<members::code>;
type State = S::State;
}
pub struct SetState<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetState<S> {}
impl<S: State> State for SetState<S> {
type Code = S::Code;
type State = Set<members::state>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct code(());
pub struct state(());
}
}
pub struct GoogleCallbackBuilder<'a, S: google_callback_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>, Option<CowStr<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GoogleCallback<'a> {
pub fn new() -> GoogleCallbackBuilder<'a, google_callback_state::Empty> {
GoogleCallbackBuilder::new()
}
}
impl<'a> GoogleCallbackBuilder<'a, google_callback_state::Empty> {
pub fn new() -> Self {
GoogleCallbackBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> GoogleCallbackBuilder<'a, S>
where
S: google_callback_state::State,
S::Code: google_callback_state::IsUnset,
{
pub fn code(
mut self,
value: impl Into<CowStr<'a>>,
) -> GoogleCallbackBuilder<'a, google_callback_state::SetCode<S>> {
self._fields.0 = Option::Some(value.into());
GoogleCallbackBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GoogleCallbackBuilder<'a, S>
where
S: google_callback_state::State,
S::State: google_callback_state::IsUnset,
{
pub fn state(
mut self,
value: impl Into<CowStr<'a>>,
) -> GoogleCallbackBuilder<'a, google_callback_state::SetState<S>> {
self._fields.1 = Option::Some(value.into());
GoogleCallbackBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GoogleCallbackBuilder<'a, S>
where
S: google_callback_state::State,
S::Code: google_callback_state::IsSet,
S::State: google_callback_state::IsSet,
{
pub fn build(self) -> GoogleCallback<'a> {
GoogleCallback {
code: self._fields.0.unwrap(),
state: self._fields.1.unwrap(),
}
}
}