jacquard-api 0.10.2

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

#[jacquard_derive::lexicon]
#[derive(
    serde::Serialize,
    serde::Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct UpdateHandle<'a> {
    ///The new handle.
    #[serde(borrow)]
    pub handle: jacquard_common::types::string::Handle<'a>,
}

pub mod update_handle_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 Handle;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Handle = Unset;
    }
    ///State transition - sets the `handle` field to Set
    pub struct SetHandle<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetHandle<S> {}
    impl<S: State> State for SetHandle<S> {
        type Handle = Set<members::handle>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `handle` field
        pub struct handle(());
    }
}

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

impl<'a> UpdateHandle<'a> {
    /// Create a new builder for this type
    pub fn new() -> UpdateHandleBuilder<'a, update_handle_state::Empty> {
        UpdateHandleBuilder::new()
    }
}

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

impl<'a, S> UpdateHandleBuilder<'a, S>
where
    S: update_handle_state::State,
    S::Handle: update_handle_state::IsUnset,
{
    /// Set the `handle` field (required)
    pub fn handle(
        mut self,
        value: impl Into<jacquard_common::types::string::Handle<'a>>,
    ) -> UpdateHandleBuilder<'a, update_handle_state::SetHandle<S>> {
        self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into());
        UpdateHandleBuilder {
            _phantom_state: ::core::marker::PhantomData,
            __unsafe_private_named: self.__unsafe_private_named,
            _phantom: ::core::marker::PhantomData,
        }
    }
}

impl<'a, S> UpdateHandleBuilder<'a, S>
where
    S: update_handle_state::State,
    S::Handle: update_handle_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> UpdateHandle<'a> {
        UpdateHandle {
            handle: self.__unsafe_private_named.0.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data
    pub fn build_with_data(
        self,
        extra_data: std::collections::BTreeMap<
            jacquard_common::deps::smol_str::SmolStr,
            jacquard_common::types::value::Data<'a>,
        >,
    ) -> UpdateHandle<'a> {
        UpdateHandle {
            handle: self.__unsafe_private_named.0.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}

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

impl<'a> jacquard_common::xrpc::XrpcRequest for UpdateHandle<'a> {
    const NSID: &'static str = "app.ocho.auth.updateHandle";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = UpdateHandleResponse;
}

/// Endpoint type for
///app.ocho.auth.updateHandle
pub struct UpdateHandleRequest;
impl jacquard_common::xrpc::XrpcEndpoint for UpdateHandleRequest {
    const PATH: &'static str = "/xrpc/app.ocho.auth.updateHandle";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<'de> = UpdateHandle<'de>;
    type Response = UpdateHandleResponse;
}