jacquard-api 0.12.0-beta.1

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

pub mod actor;
pub mod collection;
pub mod deck;
pub mod richtext;
pub mod social;


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

#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{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::string::UriValue;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;

#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
/// Reference to a Magic: The Gathering card with printing and oracle identifiers.

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct CardRef<S: BosStr = DefaultStr> {
    /**Oracle card URI (oracle:<uuid>) - for external indexing.
Derived from scryfallUri; on conflict, scryfallUri takes precedence.*/
    pub oracle_uri: UriValue<S>,
    ///Scryfall printing URI (scry:<uuid>) - authoritative identifier
    pub scryfall_uri: UriValue<S>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

impl<S: BosStr> LexiconSchema for CardRef<S> {
    fn nsid() -> &'static str {
        "com.deckbelcher.defs"
    }
    fn def_name() -> &'static str {
        "cardRef"
    }
    fn lexicon_doc() -> LexiconDoc<'static> {
        lexicon_doc_com_deckbelcher_defs()
    }
    fn validate(&self) -> Result<(), ConstraintError> {
        Ok(())
    }
}

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

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

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

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

impl<S: BosStr, St> CardRefBuilder<S, St>
where
    St: card_ref_state::State,
    St::OracleUri: card_ref_state::IsUnset,
{
    /// Set the `oracleUri` field (required)
    pub fn oracle_uri(
        mut self,
        value: impl Into<UriValue<S>>,
    ) -> CardRefBuilder<S, card_ref_state::SetOracleUri<St>> {
        self._fields.0 = Option::Some(value.into());
        CardRefBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> CardRefBuilder<S, St>
where
    St: card_ref_state::State,
    St::ScryfallUri: card_ref_state::IsUnset,
{
    /// Set the `scryfallUri` field (required)
    pub fn scryfall_uri(
        mut self,
        value: impl Into<UriValue<S>>,
    ) -> CardRefBuilder<S, card_ref_state::SetScryfallUri<St>> {
        self._fields.1 = Option::Some(value.into());
        CardRefBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> CardRefBuilder<S, St>
where
    St: card_ref_state::State,
    St::ScryfallUri: card_ref_state::IsSet,
    St::OracleUri: card_ref_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> CardRef<S> {
        CardRef {
            oracle_uri: self._fields.0.unwrap(),
            scryfall_uri: 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>>) -> CardRef<S> {
        CardRef {
            oracle_uri: self._fields.0.unwrap(),
            scryfall_uri: self._fields.1.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}

fn lexicon_doc_com_deckbelcher_defs() -> 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("com.deckbelcher.defs"),
        defs: {
            let mut map = BTreeMap::new();
            map.insert(
                SmolStr::new_static("cardRef"),
                LexUserType::Object(LexObject {
                    description: Some(
                        CowStr::new_static(
                            "Reference to a Magic: The Gathering card with printing and oracle identifiers.",
                        ),
                    ),
                    required: Some(
                        vec![
                            SmolStr::new_static("scryfallUri"),
                            SmolStr::new_static("oracleUri")
                        ],
                    ),
                    properties: {
                        #[allow(unused_mut)]
                        let mut map = BTreeMap::new();
                        map.insert(
                            SmolStr::new_static("oracleUri"),
                            LexObjectProperty::String(LexString {
                                description: Some(
                                    CowStr::new_static(
                                        "Oracle card URI (oracle:<uuid>) - for external indexing.\nDerived from scryfallUri; on conflict, scryfallUri takes precedence.",
                                    ),
                                ),
                                format: Some(LexStringFormat::Uri),
                                ..Default::default()
                            }),
                        );
                        map.insert(
                            SmolStr::new_static("scryfallUri"),
                            LexObjectProperty::String(LexString {
                                description: Some(
                                    CowStr::new_static(
                                        "Scryfall printing URI (scry:<uuid>) - authoritative identifier",
                                    ),
                                ),
                                format: Some(LexStringFormat::Uri),
                                ..Default::default()
                            }),
                        );
                        map
                    },
                    ..Default::default()
                }),
            );
            map
        },
        ..Default::default()
    }
}