jacquard-api 0.11.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: app.rocksky.charts.getScrobblesChart
//
// 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_common::CowStr;
use jacquard_common::types::ident::AtIdentifier;
use jacquard_common::types::string::AtUri;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::app_rocksky::charts::ChartsView;

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetScrobblesChart<'a> {
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub albumuri: Option<AtUri<'a>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub artisturi: Option<AtUri<'a>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub did: Option<AtIdentifier<'a>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub genre: Option<CowStr<'a>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub songuri: Option<AtUri<'a>>,
}


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

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

impl<'a> jacquard_common::xrpc::XrpcRequest for GetScrobblesChart<'a> {
    const NSID: &'static str = "app.rocksky.charts.getScrobblesChart";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Response = GetScrobblesChartResponse;
}

/// Endpoint type for app.rocksky.charts.getScrobblesChart
pub struct GetScrobblesChartRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetScrobblesChartRequest {
    const PATH: &'static str = "/xrpc/app.rocksky.charts.getScrobblesChart";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Request<'de> = GetScrobblesChart<'de>;
    type Response = GetScrobblesChartResponse;
}

pub mod get_scrobbles_chart_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 GetScrobblesChartBuilder<'a, S: get_scrobbles_chart_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (
        Option<AtUri<'a>>,
        Option<AtUri<'a>>,
        Option<AtIdentifier<'a>>,
        Option<CowStr<'a>>,
        Option<AtUri<'a>>,
    ),
    _lifetime: PhantomData<&'a ()>,
}

impl<'a> GetScrobblesChart<'a> {
    /// Create a new builder for this type
    pub fn new() -> GetScrobblesChartBuilder<'a, get_scrobbles_chart_state::Empty> {
        GetScrobblesChartBuilder::new()
    }
}

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

impl<'a, S: get_scrobbles_chart_state::State> GetScrobblesChartBuilder<'a, S> {
    /// Set the `albumuri` field (optional)
    pub fn albumuri(mut self, value: impl Into<Option<AtUri<'a>>>) -> Self {
        self._fields.0 = value.into();
        self
    }
    /// Set the `albumuri` field to an Option value (optional)
    pub fn maybe_albumuri(mut self, value: Option<AtUri<'a>>) -> Self {
        self._fields.0 = value;
        self
    }
}

impl<'a, S: get_scrobbles_chart_state::State> GetScrobblesChartBuilder<'a, S> {
    /// Set the `artisturi` field (optional)
    pub fn artisturi(mut self, value: impl Into<Option<AtUri<'a>>>) -> Self {
        self._fields.1 = value.into();
        self
    }
    /// Set the `artisturi` field to an Option value (optional)
    pub fn maybe_artisturi(mut self, value: Option<AtUri<'a>>) -> Self {
        self._fields.1 = value;
        self
    }
}

impl<'a, S: get_scrobbles_chart_state::State> GetScrobblesChartBuilder<'a, S> {
    /// Set the `did` field (optional)
    pub fn did(mut self, value: impl Into<Option<AtIdentifier<'a>>>) -> Self {
        self._fields.2 = value.into();
        self
    }
    /// Set the `did` field to an Option value (optional)
    pub fn maybe_did(mut self, value: Option<AtIdentifier<'a>>) -> Self {
        self._fields.2 = value;
        self
    }
}

impl<'a, S: get_scrobbles_chart_state::State> GetScrobblesChartBuilder<'a, S> {
    /// Set the `genre` field (optional)
    pub fn genre(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
        self._fields.3 = value.into();
        self
    }
    /// Set the `genre` field to an Option value (optional)
    pub fn maybe_genre(mut self, value: Option<CowStr<'a>>) -> Self {
        self._fields.3 = value;
        self
    }
}

impl<'a, S: get_scrobbles_chart_state::State> GetScrobblesChartBuilder<'a, S> {
    /// Set the `songuri` field (optional)
    pub fn songuri(mut self, value: impl Into<Option<AtUri<'a>>>) -> Self {
        self._fields.4 = value.into();
        self
    }
    /// Set the `songuri` field to an Option value (optional)
    pub fn maybe_songuri(mut self, value: Option<AtUri<'a>>) -> Self {
        self._fields.4 = value;
        self
    }
}

impl<'a, S> GetScrobblesChartBuilder<'a, S>
where
    S: get_scrobbles_chart_state::State,
{
    /// Build the final struct
    pub fn build(self) -> GetScrobblesChart<'a> {
        GetScrobblesChart {
            albumuri: self._fields.0,
            artisturi: self._fields.1,
            did: self._fields.2,
            genre: self._fields.3,
            songuri: self._fields.4,
        }
    }
}