jacquard-api 0.11.0

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

#[allow(unused_imports)]
use alloc::collections::BTreeMap;

#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::types::string::{Did, Cid, UriValue};
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};

#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct DecryptByCid<'a> {
    #[serde(borrow)]
    pub cid: Cid<'a>,
    #[serde(borrow)]
    pub password: CowStr<'a>,
    #[serde(borrow)]
    pub pds: UriValue<'a>,
    #[serde(borrow)]
    pub repo: Did<'a>,
}

/// Returns the encrypted result.

#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct DecryptByCidOutput<'a> {
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub additional: Option<CowStr<'a>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub message: Option<CowStr<'a>>,
    #[serde(borrow)]
    pub text: CowStr<'a>,
}

/// Response type for uk.skyblur.post.decryptByCid
pub struct DecryptByCidResponse;
impl jacquard_common::xrpc::XrpcResp for DecryptByCidResponse {
    const NSID: &'static str = "uk.skyblur.post.decryptByCid";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = DecryptByCidOutput<'de>;
    type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}

impl<'a> jacquard_common::xrpc::XrpcRequest for DecryptByCid<'a> {
    const NSID: &'static str = "uk.skyblur.post.decryptByCid";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = DecryptByCidResponse;
}

/// Endpoint type for uk.skyblur.post.decryptByCid
pub struct DecryptByCidRequest;
impl jacquard_common::xrpc::XrpcEndpoint for DecryptByCidRequest {
    const PATH: &'static str = "/xrpc/uk.skyblur.post.decryptByCid";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<'de> = DecryptByCid<'de>;
    type Response = DecryptByCidResponse;
}

pub mod decrypt_by_cid_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 Cid;
        type Repo;
        type Pds;
        type Password;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Cid = Unset;
        type Repo = Unset;
        type Pds = Unset;
        type Password = Unset;
    }
    ///State transition - sets the `cid` field to Set
    pub struct SetCid<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetCid<S> {}
    impl<S: State> State for SetCid<S> {
        type Cid = Set<members::cid>;
        type Repo = S::Repo;
        type Pds = S::Pds;
        type Password = S::Password;
    }
    ///State transition - sets the `repo` field to Set
    pub struct SetRepo<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetRepo<S> {}
    impl<S: State> State for SetRepo<S> {
        type Cid = S::Cid;
        type Repo = Set<members::repo>;
        type Pds = S::Pds;
        type Password = S::Password;
    }
    ///State transition - sets the `pds` field to Set
    pub struct SetPds<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetPds<S> {}
    impl<S: State> State for SetPds<S> {
        type Cid = S::Cid;
        type Repo = S::Repo;
        type Pds = Set<members::pds>;
        type Password = S::Password;
    }
    ///State transition - sets the `password` field to Set
    pub struct SetPassword<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetPassword<S> {}
    impl<S: State> State for SetPassword<S> {
        type Cid = S::Cid;
        type Repo = S::Repo;
        type Pds = S::Pds;
        type Password = Set<members::password>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `cid` field
        pub struct cid(());
        ///Marker type for the `repo` field
        pub struct repo(());
        ///Marker type for the `pds` field
        pub struct pds(());
        ///Marker type for the `password` field
        pub struct password(());
    }
}

/// Builder for constructing an instance of this type
pub struct DecryptByCidBuilder<'a, S: decrypt_by_cid_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (
        Option<Cid<'a>>,
        Option<CowStr<'a>>,
        Option<UriValue<'a>>,
        Option<Did<'a>>,
    ),
    _lifetime: PhantomData<&'a ()>,
}

impl<'a> DecryptByCid<'a> {
    /// Create a new builder for this type
    pub fn new() -> DecryptByCidBuilder<'a, decrypt_by_cid_state::Empty> {
        DecryptByCidBuilder::new()
    }
}

impl<'a> DecryptByCidBuilder<'a, decrypt_by_cid_state::Empty> {
    /// Create a new builder with all fields unset
    pub fn new() -> Self {
        DecryptByCidBuilder {
            _state: PhantomData,
            _fields: (None, None, None, None),
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> DecryptByCidBuilder<'a, S>
where
    S: decrypt_by_cid_state::State,
    S::Cid: decrypt_by_cid_state::IsUnset,
{
    /// Set the `cid` field (required)
    pub fn cid(
        mut self,
        value: impl Into<Cid<'a>>,
    ) -> DecryptByCidBuilder<'a, decrypt_by_cid_state::SetCid<S>> {
        self._fields.0 = Option::Some(value.into());
        DecryptByCidBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> DecryptByCidBuilder<'a, S>
where
    S: decrypt_by_cid_state::State,
    S::Password: decrypt_by_cid_state::IsUnset,
{
    /// Set the `password` field (required)
    pub fn password(
        mut self,
        value: impl Into<CowStr<'a>>,
    ) -> DecryptByCidBuilder<'a, decrypt_by_cid_state::SetPassword<S>> {
        self._fields.1 = Option::Some(value.into());
        DecryptByCidBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> DecryptByCidBuilder<'a, S>
where
    S: decrypt_by_cid_state::State,
    S::Pds: decrypt_by_cid_state::IsUnset,
{
    /// Set the `pds` field (required)
    pub fn pds(
        mut self,
        value: impl Into<UriValue<'a>>,
    ) -> DecryptByCidBuilder<'a, decrypt_by_cid_state::SetPds<S>> {
        self._fields.2 = Option::Some(value.into());
        DecryptByCidBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> DecryptByCidBuilder<'a, S>
where
    S: decrypt_by_cid_state::State,
    S::Repo: decrypt_by_cid_state::IsUnset,
{
    /// Set the `repo` field (required)
    pub fn repo(
        mut self,
        value: impl Into<Did<'a>>,
    ) -> DecryptByCidBuilder<'a, decrypt_by_cid_state::SetRepo<S>> {
        self._fields.3 = Option::Some(value.into());
        DecryptByCidBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> DecryptByCidBuilder<'a, S>
where
    S: decrypt_by_cid_state::State,
    S::Cid: decrypt_by_cid_state::IsSet,
    S::Repo: decrypt_by_cid_state::IsSet,
    S::Pds: decrypt_by_cid_state::IsSet,
    S::Password: decrypt_by_cid_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> DecryptByCid<'a> {
        DecryptByCid {
            cid: self._fields.0.unwrap(),
            password: self._fields.1.unwrap(),
            pds: self._fields.2.unwrap(),
            repo: self._fields.3.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data
    pub fn build_with_data(
        self,
        extra_data: BTreeMap<
            jacquard_common::deps::smol_str::SmolStr,
            jacquard_common::types::value::Data<'a>,
        >,
    ) -> DecryptByCid<'a> {
        DecryptByCid {
            cid: self._fields.0.unwrap(),
            password: self._fields.1.unwrap(),
            pds: self._fields.2.unwrap(),
            repo: self._fields.3.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}