jacquard-api 0.11.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: pub.quizzy.quizBegin
//
// 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;

#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::types::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid, Datetime};
use jacquard_common::types::uri::{RecordUri, UriError};
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};
use crate::com_atproto::repo::strong_ref::StrongRef;
/// Marks the start of a quiz session

#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct QuizBegin<'a> {
    ///When the quiz ends
    pub ends_at: Datetime,
    ///Reference to the league running this quiz
    #[serde(borrow)]
    pub league: StrongRef<'a>,
    ///Reference to the quiz being played
    #[serde(borrow)]
    pub quiz: StrongRef<'a>,
    ///When the quiz starts
    pub started_at: Datetime,
}

/// 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 QuizBeginGetRecordOutput<'a> {
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub cid: Option<Cid<'a>>,
    #[serde(borrow)]
    pub uri: AtUri<'a>,
    #[serde(borrow)]
    pub value: QuizBegin<'a>,
}

impl<'a> QuizBegin<'a> {
    pub fn uri(
        uri: impl Into<CowStr<'a>>,
    ) -> Result<RecordUri<'a, QuizBeginRecord>, UriError> {
        RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
    }
}

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

#[derive(Debug, Serialize, Deserialize)]
pub struct QuizBeginRecord;
impl XrpcResp for QuizBeginRecord {
    const NSID: &'static str = "pub.quizzy.quizBegin";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = QuizBeginGetRecordOutput<'de>;
    type Err<'de> = RecordError<'de>;
}

impl From<QuizBeginGetRecordOutput<'_>> for QuizBegin<'_> {
    fn from(output: QuizBeginGetRecordOutput<'_>) -> Self {
        use jacquard_common::IntoStatic;
        output.value.into_static()
    }
}

impl Collection for QuizBegin<'_> {
    const NSID: &'static str = "pub.quizzy.quizBegin";
    type Record = QuizBeginRecord;
}

impl Collection for QuizBeginRecord {
    const NSID: &'static str = "pub.quizzy.quizBegin";
    type Record = QuizBeginRecord;
}

impl<'a> LexiconSchema for QuizBegin<'a> {
    fn nsid() -> &'static str {
        "pub.quizzy.quizBegin"
    }
    fn def_name() -> &'static str {
        "main"
    }
    fn lexicon_doc() -> LexiconDoc<'static> {
        lexicon_doc_pub_quizzy_quizBegin()
    }
    fn validate(&self) -> Result<(), ConstraintError> {
        Ok(())
    }
}

pub mod quiz_begin_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 EndsAt;
        type League;
        type Quiz;
        type StartedAt;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type EndsAt = Unset;
        type League = Unset;
        type Quiz = Unset;
        type StartedAt = Unset;
    }
    ///State transition - sets the `ends_at` field to Set
    pub struct SetEndsAt<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetEndsAt<S> {}
    impl<S: State> State for SetEndsAt<S> {
        type EndsAt = Set<members::ends_at>;
        type League = S::League;
        type Quiz = S::Quiz;
        type StartedAt = S::StartedAt;
    }
    ///State transition - sets the `league` field to Set
    pub struct SetLeague<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetLeague<S> {}
    impl<S: State> State for SetLeague<S> {
        type EndsAt = S::EndsAt;
        type League = Set<members::league>;
        type Quiz = S::Quiz;
        type StartedAt = S::StartedAt;
    }
    ///State transition - sets the `quiz` field to Set
    pub struct SetQuiz<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetQuiz<S> {}
    impl<S: State> State for SetQuiz<S> {
        type EndsAt = S::EndsAt;
        type League = S::League;
        type Quiz = Set<members::quiz>;
        type StartedAt = S::StartedAt;
    }
    ///State transition - sets the `started_at` field to Set
    pub struct SetStartedAt<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetStartedAt<S> {}
    impl<S: State> State for SetStartedAt<S> {
        type EndsAt = S::EndsAt;
        type League = S::League;
        type Quiz = S::Quiz;
        type StartedAt = Set<members::started_at>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `ends_at` field
        pub struct ends_at(());
        ///Marker type for the `league` field
        pub struct league(());
        ///Marker type for the `quiz` field
        pub struct quiz(());
        ///Marker type for the `started_at` field
        pub struct started_at(());
    }
}

/// Builder for constructing an instance of this type
pub struct QuizBeginBuilder<'a, S: quiz_begin_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (
        Option<Datetime>,
        Option<StrongRef<'a>>,
        Option<StrongRef<'a>>,
        Option<Datetime>,
    ),
    _lifetime: PhantomData<&'a ()>,
}

impl<'a> QuizBegin<'a> {
    /// Create a new builder for this type
    pub fn new() -> QuizBeginBuilder<'a, quiz_begin_state::Empty> {
        QuizBeginBuilder::new()
    }
}

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

impl<'a, S> QuizBeginBuilder<'a, S>
where
    S: quiz_begin_state::State,
    S::EndsAt: quiz_begin_state::IsUnset,
{
    /// Set the `endsAt` field (required)
    pub fn ends_at(
        mut self,
        value: impl Into<Datetime>,
    ) -> QuizBeginBuilder<'a, quiz_begin_state::SetEndsAt<S>> {
        self._fields.0 = Option::Some(value.into());
        QuizBeginBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> QuizBeginBuilder<'a, S>
where
    S: quiz_begin_state::State,
    S::League: quiz_begin_state::IsUnset,
{
    /// Set the `league` field (required)
    pub fn league(
        mut self,
        value: impl Into<StrongRef<'a>>,
    ) -> QuizBeginBuilder<'a, quiz_begin_state::SetLeague<S>> {
        self._fields.1 = Option::Some(value.into());
        QuizBeginBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> QuizBeginBuilder<'a, S>
where
    S: quiz_begin_state::State,
    S::Quiz: quiz_begin_state::IsUnset,
{
    /// Set the `quiz` field (required)
    pub fn quiz(
        mut self,
        value: impl Into<StrongRef<'a>>,
    ) -> QuizBeginBuilder<'a, quiz_begin_state::SetQuiz<S>> {
        self._fields.2 = Option::Some(value.into());
        QuizBeginBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> QuizBeginBuilder<'a, S>
where
    S: quiz_begin_state::State,
    S::StartedAt: quiz_begin_state::IsUnset,
{
    /// Set the `startedAt` field (required)
    pub fn started_at(
        mut self,
        value: impl Into<Datetime>,
    ) -> QuizBeginBuilder<'a, quiz_begin_state::SetStartedAt<S>> {
        self._fields.3 = Option::Some(value.into());
        QuizBeginBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> QuizBeginBuilder<'a, S>
where
    S: quiz_begin_state::State,
    S::EndsAt: quiz_begin_state::IsSet,
    S::League: quiz_begin_state::IsSet,
    S::Quiz: quiz_begin_state::IsSet,
    S::StartedAt: quiz_begin_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> QuizBegin<'a> {
        QuizBegin {
            ends_at: self._fields.0.unwrap(),
            league: self._fields.1.unwrap(),
            quiz: self._fields.2.unwrap(),
            started_at: 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>,
        >,
    ) -> QuizBegin<'a> {
        QuizBegin {
            ends_at: self._fields.0.unwrap(),
            league: self._fields.1.unwrap(),
            quiz: self._fields.2.unwrap(),
            started_at: self._fields.3.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}

fn lexicon_doc_pub_quizzy_quizBegin() -> 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("pub.quizzy.quizBegin"),
        defs: {
            let mut map = BTreeMap::new();
            map.insert(
                SmolStr::new_static("main"),
                LexUserType::Record(LexRecord {
                    description: Some(
                        CowStr::new_static("Marks the start of a quiz session"),
                    ),
                    key: Some(CowStr::new_static("tid")),
                    record: LexRecordRecord::Object(LexObject {
                        required: Some(
                            vec![
                                SmolStr::new_static("league"), SmolStr::new_static("quiz"),
                                SmolStr::new_static("startedAt"),
                                SmolStr::new_static("endsAt")
                            ],
                        ),
                        properties: {
                            #[allow(unused_mut)]
                            let mut map = BTreeMap::new();
                            map.insert(
                                SmolStr::new_static("endsAt"),
                                LexObjectProperty::String(LexString {
                                    description: Some(CowStr::new_static("When the quiz ends")),
                                    format: Some(LexStringFormat::Datetime),
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("league"),
                                LexObjectProperty::Ref(LexRef {
                                    r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("quiz"),
                                LexObjectProperty::Ref(LexRef {
                                    r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("startedAt"),
                                LexObjectProperty::String(LexString {
                                    description: Some(
                                        CowStr::new_static("When the quiz starts"),
                                    ),
                                    format: Some(LexStringFormat::Datetime),
                                    ..Default::default()
                                }),
                            );
                            map
                        },
                        ..Default::default()
                    }),
                    ..Default::default()
                }),
            );
            map
        },
        ..Default::default()
    }
}