jacquard-api 0.10.2

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

#[jacquard_derive::lexicon]
#[derive(
    serde::Serialize,
    serde::Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct PostEmbed<'a> {
    #[serde(skip_serializing_if = "std::option::Option::is_none")]
    #[serde(borrow)]
    pub foo: std::option::Option<jacquard_common::CowStr<'a>>,
    #[serde(borrow)]
    pub uri: jacquard_common::types::string::AtUri<'a>,
}

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

/// Builder for constructing an instance of this type
pub struct PostEmbedBuilder<'a, S: post_embed_state::State> {
    _phantom_state: ::core::marker::PhantomData<fn() -> S>,
    __unsafe_private_named: (
        ::core::option::Option<jacquard_common::CowStr<'a>>,
        ::core::option::Option<jacquard_common::types::string::AtUri<'a>>,
    ),
    _phantom: ::core::marker::PhantomData<&'a ()>,
}

impl<'a> PostEmbed<'a> {
    /// Create a new builder for this type
    pub fn new() -> PostEmbedBuilder<'a, post_embed_state::Empty> {
        PostEmbedBuilder::new()
    }
}

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

impl<'a, S: post_embed_state::State> PostEmbedBuilder<'a, S> {
    /// Set the `foo` field (optional)
    pub fn foo(mut self, value: impl Into<Option<jacquard_common::CowStr<'a>>>) -> Self {
        self.__unsafe_private_named.0 = value.into();
        self
    }
    /// Set the `foo` field to an Option value (optional)
    pub fn maybe_foo(mut self, value: Option<jacquard_common::CowStr<'a>>) -> Self {
        self.__unsafe_private_named.0 = value;
        self
    }
}

impl<'a, S> PostEmbedBuilder<'a, S>
where
    S: post_embed_state::State,
    S::Uri: post_embed_state::IsUnset,
{
    /// Set the `uri` field (required)
    pub fn uri(
        mut self,
        value: impl Into<jacquard_common::types::string::AtUri<'a>>,
    ) -> PostEmbedBuilder<'a, post_embed_state::SetUri<S>> {
        self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into());
        PostEmbedBuilder {
            _phantom_state: ::core::marker::PhantomData,
            __unsafe_private_named: self.__unsafe_private_named,
            _phantom: ::core::marker::PhantomData,
        }
    }
}

impl<'a, S> PostEmbedBuilder<'a, S>
where
    S: post_embed_state::State,
    S::Uri: post_embed_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> PostEmbed<'a> {
        PostEmbed {
            foo: self.__unsafe_private_named.0,
            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>,
        >,
    ) -> PostEmbed<'a> {
        PostEmbed {
            foo: self.__unsafe_private_named.0,
            uri: self.__unsafe_private_named.1.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}

#[jacquard_derive::lexicon]
#[derive(
    serde::Serialize,
    serde::Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct PostEmbedOutput<'a> {
    #[serde(flatten)]
    #[serde(borrow)]
    pub value: crate::at_inlay::Response<'a>,
}

/// Response type for
///mov.danabra.PostEmbed
pub struct PostEmbedResponse;
impl jacquard_common::xrpc::XrpcResp for PostEmbedResponse {
    const NSID: &'static str = "mov.danabra.PostEmbed";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = PostEmbedOutput<'de>;
    type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}

impl<'a> jacquard_common::xrpc::XrpcRequest for PostEmbed<'a> {
    const NSID: &'static str = "mov.danabra.PostEmbed";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = PostEmbedResponse;
}

/// Endpoint type for
///mov.danabra.PostEmbed
pub struct PostEmbedRequest;
impl jacquard_common::xrpc::XrpcEndpoint for PostEmbedRequest {
    const PATH: &'static str = "/xrpc/mov.danabra.PostEmbed";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<'de> = PostEmbed<'de>;
    type Response = PostEmbedResponse;
}