jacquard-api 0.12.0-beta.1

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, BosStr, DefaultStr, FromStaticStr};
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::{Did, Cid, UriValue};
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct DecryptByCid<S: BosStr = DefaultStr> {
    pub cid: Cid<S>,
    pub password: S,
    pub pds: UriValue<S>,
    pub repo: Did<S>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

/// Returns the encrypted result.

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct DecryptByCidOutput<S: BosStr = DefaultStr> {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub additional: Option<S>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub message: Option<S>,
    pub text: S,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

/// 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<S: BosStr> = DecryptByCidOutput<S>;
    type Err = jacquard_common::xrpc::GenericError;
}

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

/// Builder for constructing an instance of this type.
pub struct DecryptByCidBuilder<S: BosStr, St: decrypt_by_cid_state::State> {
    _state: PhantomData<fn() -> St>,
    _fields: (Option<Cid<S>>, Option<S>, Option<UriValue<S>>, Option<Did<S>>),
    _type: PhantomData<fn() -> S>,
}

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

impl<S: BosStr> DecryptByCidBuilder<S, 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),
            _type: PhantomData,
        }
    }
}

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

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

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

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

impl<S: BosStr, St> DecryptByCidBuilder<S, St>
where
    St: decrypt_by_cid_state::State,
    St::Repo: decrypt_by_cid_state::IsSet,
    St::Password: decrypt_by_cid_state::IsSet,
    St::Cid: decrypt_by_cid_state::IsSet,
    St::Pds: decrypt_by_cid_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> DecryptByCid<S> {
        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<SmolStr, Data<S>>,
    ) -> DecryptByCid<S> {
        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),
        }
    }
}