jacquard-api 0.11.0

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

#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::app_rocksky::feed::FeedGeneratorsView;

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetFeedGenerators {
    ///(min: 1)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub size: Option<i64>,
}


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

/// Response type for app.rocksky.feed.getFeedGenerators
pub struct GetFeedGeneratorsResponse;
impl jacquard_common::xrpc::XrpcResp for GetFeedGeneratorsResponse {
    const NSID: &'static str = "app.rocksky.feed.getFeedGenerators";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = GetFeedGeneratorsOutput<'de>;
    type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}

impl jacquard_common::xrpc::XrpcRequest for GetFeedGenerators {
    const NSID: &'static str = "app.rocksky.feed.getFeedGenerators";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Response = GetFeedGeneratorsResponse;
}

/// Endpoint type for app.rocksky.feed.getFeedGenerators
pub struct GetFeedGeneratorsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetFeedGeneratorsRequest {
    const PATH: &'static str = "/xrpc/app.rocksky.feed.getFeedGenerators";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Request<'de> = GetFeedGenerators;
    type Response = GetFeedGeneratorsResponse;
}

pub mod get_feed_generators_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 {}
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {}
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {}
}

/// Builder for constructing an instance of this type
pub struct GetFeedGeneratorsBuilder<S: get_feed_generators_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (Option<i64>,),
}

impl GetFeedGenerators {
    /// Create a new builder for this type
    pub fn new() -> GetFeedGeneratorsBuilder<get_feed_generators_state::Empty> {
        GetFeedGeneratorsBuilder::new()
    }
}

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

impl<S: get_feed_generators_state::State> GetFeedGeneratorsBuilder<S> {
    /// Set the `size` field (optional)
    pub fn size(mut self, value: impl Into<Option<i64>>) -> Self {
        self._fields.0 = value.into();
        self
    }
    /// Set the `size` field to an Option value (optional)
    pub fn maybe_size(mut self, value: Option<i64>) -> Self {
        self._fields.0 = value;
        self
    }
}

impl<S> GetFeedGeneratorsBuilder<S>
where
    S: get_feed_generators_state::State,
{
    /// Build the final struct
    pub fn build(self) -> GetFeedGenerators {
        GetFeedGenerators {
            size: self._fields.0,
        }
    }
}