jacquard-api 0.10.2

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: app.ocho.auth.githubCallback
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[derive(
    serde::Serialize,
    serde::Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct GithubCallback<'a> {
    #[serde(borrow)]
    pub code: jacquard_common::CowStr<'a>,
    #[serde(borrow)]
    pub state: jacquard_common::CowStr<'a>,
}

pub mod github_callback_state {

    pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
    #[allow(unused)]
    use ::core::marker::PhantomData;
    mod sealed {
        pub trait Sealed {}
    }
    /// State trait tracking which required fields have been set
    pub trait State: sealed::Sealed {
        type State;
        type Code;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type State = Unset;
        type Code = Unset;
    }
    ///State transition - sets the `state` field to Set
    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 State = Set<members::state>;
        type Code = S::Code;
    }
    ///State transition - sets the `code` field to Set
    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 State = S::State;
        type Code = Set<members::code>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `state` field
        pub struct state(());
        ///Marker type for the `code` field
        pub struct code(());
    }
}

/// Builder for constructing an instance of this type
pub struct GithubCallbackBuilder<'a, S: github_callback_state::State> {
    _phantom_state: ::core::marker::PhantomData<fn() -> S>,
    __unsafe_private_named: (
        ::core::option::Option<jacquard_common::CowStr<'a>>,
        ::core::option::Option<jacquard_common::CowStr<'a>>,
    ),
    _phantom: ::core::marker::PhantomData<&'a ()>,
}

impl<'a> GithubCallback<'a> {
    /// Create a new builder for this type
    pub fn new() -> GithubCallbackBuilder<'a, github_callback_state::Empty> {
        GithubCallbackBuilder::new()
    }
}

impl<'a> GithubCallbackBuilder<'a, github_callback_state::Empty> {
    /// Create a new builder with all fields unset
    pub fn new() -> Self {
        GithubCallbackBuilder {
            _phantom_state: ::core::marker::PhantomData,
            __unsafe_private_named: (None, None),
            _phantom: ::core::marker::PhantomData,
        }
    }
}

impl<'a, S> GithubCallbackBuilder<'a, S>
where
    S: github_callback_state::State,
    S::Code: github_callback_state::IsUnset,
{
    /// Set the `code` field (required)
    pub fn code(
        mut self,
        value: impl Into<jacquard_common::CowStr<'a>>,
    ) -> GithubCallbackBuilder<'a, github_callback_state::SetCode<S>> {
        self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into());
        GithubCallbackBuilder {
            _phantom_state: ::core::marker::PhantomData,
            __unsafe_private_named: self.__unsafe_private_named,
            _phantom: ::core::marker::PhantomData,
        }
    }
}

impl<'a, S> GithubCallbackBuilder<'a, S>
where
    S: github_callback_state::State,
    S::State: github_callback_state::IsUnset,
{
    /// Set the `state` field (required)
    pub fn state(
        mut self,
        value: impl Into<jacquard_common::CowStr<'a>>,
    ) -> GithubCallbackBuilder<'a, github_callback_state::SetState<S>> {
        self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into());
        GithubCallbackBuilder {
            _phantom_state: ::core::marker::PhantomData,
            __unsafe_private_named: self.__unsafe_private_named,
            _phantom: ::core::marker::PhantomData,
        }
    }
}

impl<'a, S> GithubCallbackBuilder<'a, S>
where
    S: github_callback_state::State,
    S::State: github_callback_state::IsSet,
    S::Code: github_callback_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> GithubCallback<'a> {
        GithubCallback {
            code: self.__unsafe_private_named.0.unwrap(),
            state: self.__unsafe_private_named.1.unwrap(),
        }
    }
}

/// Response type for
///app.ocho.auth.githubCallback
pub struct GithubCallbackResponse;
impl jacquard_common::xrpc::XrpcResp for GithubCallbackResponse {
    const NSID: &'static str = "app.ocho.auth.githubCallback";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = ();
    type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}

impl<'a> jacquard_common::xrpc::XrpcRequest for GithubCallback<'a> {
    const NSID: &'static str = "app.ocho.auth.githubCallback";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Response = GithubCallbackResponse;
}

/// Endpoint type for
///app.ocho.auth.githubCallback
pub struct GithubCallbackRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GithubCallbackRequest {
    const PATH: &'static str = "/xrpc/app.ocho.auth.githubCallback";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Request<'de> = GithubCallback<'de>;
    type Response = GithubCallbackResponse;
}