jacquard-api 0.10.2

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;

/// Reference to a Magic: The Gathering card with printing and oracle identifiers.
#[jacquard_derive::lexicon]
#[derive(
    serde::Serialize,
    serde::Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct CardRef<'a> {
    /**Oracle card URI (oracle:<uuid>) - for external indexing.
Derived from scryfallUri; on conflict, scryfallUri takes precedence.*/
    #[serde(borrow)]
    pub oracle_uri: jacquard_common::types::string::UriValue<'a>,
    ///Scryfall printing URI (scry:<uuid>) - authoritative identifier
    #[serde(borrow)]
    pub scryfall_uri: jacquard_common::types::string::UriValue<'a>,
}

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<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetScryfallUri<S> {}
    impl<S: State> State for SetScryfallUri<S> {
        type ScryfallUri = Set<members::scryfall_uri>;
        type OracleUri = S::OracleUri;
    }
    ///State transition - sets the `oracle_uri` field to Set
    pub struct SetOracleUri<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetOracleUri<S> {}
    impl<S: State> State for SetOracleUri<S> {
        type ScryfallUri = S::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<'a, S: card_ref_state::State> {
    _phantom_state: ::core::marker::PhantomData<fn() -> S>,
    __unsafe_private_named: (
        ::core::option::Option<jacquard_common::types::string::UriValue<'a>>,
        ::core::option::Option<jacquard_common::types::string::UriValue<'a>>,
    ),
    _phantom: ::core::marker::PhantomData<&'a ()>,
}

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

impl<'a> CardRefBuilder<'a, card_ref_state::Empty> {
    /// Create a new builder with all fields unset
    pub fn new() -> Self {
        CardRefBuilder {
            _phantom_state: ::core::marker::PhantomData,
            __unsafe_private_named: (None, None),
            _phantom: ::core::marker::PhantomData,
        }
    }
}

impl<'a, S> CardRefBuilder<'a, S>
where
    S: card_ref_state::State,
    S::OracleUri: card_ref_state::IsUnset,
{
    /// Set the `oracleUri` field (required)
    pub fn oracle_uri(
        mut self,
        value: impl Into<jacquard_common::types::string::UriValue<'a>>,
    ) -> CardRefBuilder<'a, card_ref_state::SetOracleUri<S>> {
        self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into());
        CardRefBuilder {
            _phantom_state: ::core::marker::PhantomData,
            __unsafe_private_named: self.__unsafe_private_named,
            _phantom: ::core::marker::PhantomData,
        }
    }
}

impl<'a, S> CardRefBuilder<'a, S>
where
    S: card_ref_state::State,
    S::ScryfallUri: card_ref_state::IsUnset,
{
    /// Set the `scryfallUri` field (required)
    pub fn scryfall_uri(
        mut self,
        value: impl Into<jacquard_common::types::string::UriValue<'a>>,
    ) -> CardRefBuilder<'a, card_ref_state::SetScryfallUri<S>> {
        self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into());
        CardRefBuilder {
            _phantom_state: ::core::marker::PhantomData,
            __unsafe_private_named: self.__unsafe_private_named,
            _phantom: ::core::marker::PhantomData,
        }
    }
}

impl<'a, S> CardRefBuilder<'a, S>
where
    S: card_ref_state::State,
    S::ScryfallUri: card_ref_state::IsSet,
    S::OracleUri: card_ref_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> CardRef<'a> {
        CardRef {
            oracle_uri: self.__unsafe_private_named.0.unwrap(),
            scryfall_uri: self.__unsafe_private_named.1.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data
    pub fn build_with_data(
        self,
        extra_data: std::collections::BTreeMap<
            jacquard_common::deps::smol_str::SmolStr,
            jacquard_common::types::value::Data<'a>,
        >,
    ) -> CardRef<'a> {
        CardRef {
            oracle_uri: self.__unsafe_private_named.0.unwrap(),
            scryfall_uri: self.__unsafe_private_named.1.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}

fn lexicon_doc_com_deckbelcher_defs() -> ::jacquard_lexicon::lexicon::LexiconDoc<
    'static,
> {
    ::jacquard_lexicon::lexicon::LexiconDoc {
        lexicon: ::jacquard_lexicon::lexicon::Lexicon::Lexicon1,
        id: ::jacquard_common::CowStr::new_static("com.deckbelcher.defs"),
        revision: None,
        description: None,
        defs: {
            let mut map = ::alloc::collections::BTreeMap::new();
            map.insert(
                ::jacquard_common::deps::smol_str::SmolStr::new_static("cardRef"),
                ::jacquard_lexicon::lexicon::LexUserType::Object(::jacquard_lexicon::lexicon::LexObject {
                    description: Some(
                        ::jacquard_common::CowStr::new_static(
                            "Reference to a Magic: The Gathering card with printing and oracle identifiers.",
                        ),
                    ),
                    required: Some(
                        vec![
                            ::jacquard_common::deps::smol_str::SmolStr::new_static("scryfallUri"),
                            ::jacquard_common::deps::smol_str::SmolStr::new_static("oracleUri")
                        ],
                    ),
                    nullable: None,
                    properties: {
                        #[allow(unused_mut)]
                        let mut map = ::alloc::collections::BTreeMap::new();
                        map.insert(
                            ::jacquard_common::deps::smol_str::SmolStr::new_static(
                                "oracleUri",
                            ),
                            ::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
                                description: Some(
                                    ::jacquard_common::CowStr::new_static(
                                        "Oracle card URI (oracle:<uuid>) - for external indexing.\nDerived from scryfallUri; on conflict, scryfallUri takes precedence.",
                                    ),
                                ),
                                format: Some(
                                    ::jacquard_lexicon::lexicon::LexStringFormat::Uri,
                                ),
                                default: None,
                                min_length: None,
                                max_length: None,
                                min_graphemes: None,
                                max_graphemes: None,
                                r#enum: None,
                                r#const: None,
                                known_values: None,
                            }),
                        );
                        map.insert(
                            ::jacquard_common::deps::smol_str::SmolStr::new_static(
                                "scryfallUri",
                            ),
                            ::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
                                description: Some(
                                    ::jacquard_common::CowStr::new_static(
                                        "Scryfall printing URI (scry:<uuid>) - authoritative identifier",
                                    ),
                                ),
                                format: Some(
                                    ::jacquard_lexicon::lexicon::LexStringFormat::Uri,
                                ),
                                default: None,
                                min_length: None,
                                max_length: None,
                                min_graphemes: None,
                                max_graphemes: None,
                                r#enum: None,
                                r#const: None,
                                known_values: None,
                            }),
                        );
                        map
                    },
                }),
            );
            map
        },
    }
}

impl<'a> ::jacquard_lexicon::schema::LexiconSchema for CardRef<'a> {
    fn nsid() -> &'static str {
        "com.deckbelcher.defs"
    }
    fn def_name() -> &'static str {
        "cardRef"
    }
    fn lexicon_doc() -> ::jacquard_lexicon::lexicon::LexiconDoc<'static> {
        lexicon_doc_com_deckbelcher_defs()
    }
    fn validate(
        &self,
    ) -> ::core::result::Result<(), ::jacquard_lexicon::validation::ConstraintError> {
        Ok(())
    }
}