jacquard-api 0.12.0-beta.1

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

pub mod closed;
pub mod open;


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

#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr};

#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid};
use jacquard_common::types::uri::{RecordUri, UriError};
use jacquard_common::types::value::Data;
use jacquard_common::xrpc::XrpcResp;
use jacquard_derive::{IntoStatic, lexicon};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;

#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
    rename_all = "camelCase",
    rename = "sh.tangled.repo.issue.state",
    tag = "$type",
    bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct State<S: BosStr = DefaultStr> {
    pub issue: AtUri<S>,
    ///state of the issue
    pub state: StateState<S>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

/// state of the issue

#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum StateState<S: BosStr = DefaultStr> {
    ShTangledRepoIssueStateOpen,
    ShTangledRepoIssueStateClosed,
    Other(S),
}

impl<S: BosStr> StateState<S> {
    pub fn as_str(&self) -> &str {
        match self {
            Self::ShTangledRepoIssueStateOpen => "sh.tangled.repo.issue.state.open",
            Self::ShTangledRepoIssueStateClosed => "sh.tangled.repo.issue.state.closed",
            Self::Other(s) => s.as_ref(),
        }
    }
    /// Construct from a string-like value, matching known values.
    pub fn from_value(s: S) -> Self {
        match s.as_ref() {
            "sh.tangled.repo.issue.state.open" => Self::ShTangledRepoIssueStateOpen,
            "sh.tangled.repo.issue.state.closed" => Self::ShTangledRepoIssueStateClosed,
            _ => Self::Other(s),
        }
    }
}

impl<S: BosStr> core::fmt::Display for StateState<S> {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        write!(f, "{}", self.as_str())
    }
}

impl<S: BosStr> AsRef<str> for StateState<S> {
    fn as_ref(&self) -> &str {
        self.as_str()
    }
}

impl<S: BosStr> Serialize for StateState<S> {
    fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
    where
        Ser: serde::Serializer,
    {
        serializer.serialize_str(self.as_str())
    }
}

impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for StateState<S> {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        let s = S::deserialize(deserializer)?;
        Ok(Self::from_value(s))
    }
}

impl<S: BosStr + Default> Default for StateState<S> {
    fn default() -> Self {
        Self::Other(Default::default())
    }
}

impl<S: BosStr> jacquard_common::IntoStatic for StateState<S>
where
    S: BosStr + jacquard_common::IntoStatic,
    S::Output: BosStr,
{
    type Output = StateState<S::Output>;
    fn into_static(self) -> Self::Output {
        match self {
            StateState::ShTangledRepoIssueStateOpen => {
                StateState::ShTangledRepoIssueStateOpen
            }
            StateState::ShTangledRepoIssueStateClosed => {
                StateState::ShTangledRepoIssueStateClosed
            }
            StateState::Other(v) => StateState::Other(v.into_static()),
        }
    }
}

/// Typed wrapper for GetRecord response with this collection's record type.

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct StateGetRecordOutput<S: BosStr = DefaultStr> {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub cid: Option<Cid<S>>,
    pub uri: AtUri<S>,
    pub value: State<S>,
}

impl<S: BosStr> State<S> {
    pub fn uri(uri: S) -> Result<RecordUri<S, StateRecord>, UriError> {
        RecordUri::try_from_uri(AtUri::new(uri)?)
    }
}

/// Marker type for deserializing records from this collection.

#[derive(Debug, Serialize, Deserialize)]
pub struct StateRecord;
impl XrpcResp for StateRecord {
    const NSID: &'static str = "sh.tangled.repo.issue.state";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = StateGetRecordOutput<S>;
    type Err = RecordError;
}

impl<S: BosStr> From<StateGetRecordOutput<S>> for State<S> {
    fn from(output: StateGetRecordOutput<S>) -> Self {
        output.value
    }
}

impl<S: BosStr> Collection for State<S> {
    const NSID: &'static str = "sh.tangled.repo.issue.state";
    type Record = StateRecord;
}

impl Collection for StateRecord {
    const NSID: &'static str = "sh.tangled.repo.issue.state";
    type Record = StateRecord;
}

impl<S: BosStr> LexiconSchema for State<S> {
    fn nsid() -> &'static str {
        "sh.tangled.repo.issue.state"
    }
    fn def_name() -> &'static str {
        "main"
    }
    fn lexicon_doc() -> LexiconDoc<'static> {
        lexicon_doc_sh_tangled_repo_issue_state()
    }
    fn validate(&self) -> Result<(), ConstraintError> {
        Ok(())
    }
}

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

/// Builder for constructing an instance of this type.
pub struct StateBuilder<S: BosStr, St: state_state::State> {
    _state: PhantomData<fn() -> St>,
    _fields: (Option<AtUri<S>>, Option<StateState<S>>),
    _type: PhantomData<fn() -> S>,
}

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

impl<S: BosStr> StateBuilder<S, state_state::Empty> {
    /// Create a new builder with all fields unset.
    pub fn new() -> Self {
        StateBuilder {
            _state: PhantomData,
            _fields: (None, None),
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> StateBuilder<S, St>
where
    St: state_state::State,
    St::Issue: state_state::IsUnset,
{
    /// Set the `issue` field (required)
    pub fn issue(
        mut self,
        value: impl Into<AtUri<S>>,
    ) -> StateBuilder<S, state_state::SetIssue<St>> {
        self._fields.0 = Option::Some(value.into());
        StateBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> StateBuilder<S, St>
where
    St: state_state::State,
    St::State: state_state::IsUnset,
{
    /// Set the `state` field (required)
    pub fn state(
        mut self,
        value: impl Into<StateState<S>>,
    ) -> StateBuilder<S, state_state::SetState<St>> {
        self._fields.1 = Option::Some(value.into());
        StateBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> StateBuilder<S, St>
where
    St: state_state::State,
    St::Issue: state_state::IsSet,
    St::State: state_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> State<S> {
        State {
            issue: self._fields.0.unwrap(),
            state: self._fields.1.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>>) -> State<S> {
        State {
            issue: self._fields.0.unwrap(),
            state: self._fields.1.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}

fn lexicon_doc_sh_tangled_repo_issue_state() -> LexiconDoc<'static> {
    #[allow(unused_imports)]
    use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
    use jacquard_lexicon::lexicon::*;
    use alloc::collections::BTreeMap;
    LexiconDoc {
        lexicon: Lexicon::Lexicon1,
        id: CowStr::new_static("sh.tangled.repo.issue.state"),
        defs: {
            let mut map = BTreeMap::new();
            map.insert(
                SmolStr::new_static("main"),
                LexUserType::Record(LexRecord {
                    key: Some(CowStr::new_static("tid")),
                    record: LexRecordRecord::Object(LexObject {
                        required: Some(
                            vec![
                                SmolStr::new_static("issue"), SmolStr::new_static("state")
                            ],
                        ),
                        properties: {
                            #[allow(unused_mut)]
                            let mut map = BTreeMap::new();
                            map.insert(
                                SmolStr::new_static("issue"),
                                LexObjectProperty::String(LexString {
                                    format: Some(LexStringFormat::AtUri),
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("state"),
                                LexObjectProperty::String(LexString {
                                    description: Some(CowStr::new_static("state of the issue")),
                                    ..Default::default()
                                }),
                            );
                            map
                        },
                        ..Default::default()
                    }),
                    ..Default::default()
                }),
            );
            map
        },
        ..Default::default()
    }
}