jacquard-api 0.12.0-beta.1

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

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

#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr};
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::ident::AtIdentifier;
use jacquard_common::types::string::{AtUri, Cid};
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, open_union};
use serde::{Serialize, Deserialize};
use crate::place_atwork::listing::Listing;

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetListing<S: BosStr = DefaultStr> {
    pub repo: AtIdentifier<S>,
    pub rkey: S,
}


#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetListingOutput<S: BosStr = DefaultStr> {
    ///CID of the listing record
    #[serde(skip_serializing_if = "Option::is_none")]
    pub cid: Option<Cid<S>>,
    ///AT-URI of the listing
    pub uri: AtUri<S>,
    ///The job listing record
    pub value: Listing<S>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}


#[derive(
    Serialize,
    Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    thiserror::Error,
    miette::Diagnostic
)]

#[serde(tag = "error", content = "message")]
pub enum GetListingError {
    /// The requested listing does not exist
    #[serde(rename = "ListingNotFound")]
    ListingNotFound(Option<SmolStr>),
    /// Failed to parse the listing data
    #[serde(rename = "ListingParseFailed")]
    ListingParseFailed(Option<SmolStr>),
    /// Failed to fetch the listing from storage
    #[serde(rename = "ListingFetchFailed")]
    ListingFetchFailed(Option<SmolStr>),
    /// Catch-all for unknown error codes.
    #[serde(untagged)]
    Other { error: SmolStr, message: Option<SmolStr> },
}

impl core::fmt::Display for GetListingError {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        match self {
            Self::ListingNotFound(msg) => {
                write!(f, "ListingNotFound")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::ListingParseFailed(msg) => {
                write!(f, "ListingParseFailed")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::ListingFetchFailed(msg) => {
                write!(f, "ListingFetchFailed")?;
                if let Some(msg) = msg {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
            Self::Other { error, message } => {
                write!(f, "{}", error)?;
                if let Some(msg) = message {
                    write!(f, ": {}", msg)?;
                }
                Ok(())
            }
        }
    }
}

/// Response type for place.atwork.getListing
pub struct GetListingResponse;
impl jacquard_common::xrpc::XrpcResp for GetListingResponse {
    const NSID: &'static str = "place.atwork.getListing";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = GetListingOutput<S>;
    type Err = GetListingError;
}

impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetListing<S> {
    const NSID: &'static str = "place.atwork.getListing";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Response = GetListingResponse;
}

/// Endpoint type for place.atwork.getListing
pub struct GetListingRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetListingRequest {
    const PATH: &'static str = "/xrpc/place.atwork.getListing";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Request<S: BosStr> = GetListing<S>;
    type Response = GetListingResponse;
}

pub mod get_listing_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 Repo;
        type Rkey;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Repo = Unset;
        type Rkey = Unset;
    }
    ///State transition - sets the `repo` field to Set
    pub struct SetRepo<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetRepo<St> {}
    impl<St: State> State for SetRepo<St> {
        type Repo = Set<members::repo>;
        type Rkey = St::Rkey;
    }
    ///State transition - sets the `rkey` field to Set
    pub struct SetRkey<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetRkey<St> {}
    impl<St: State> State for SetRkey<St> {
        type Repo = St::Repo;
        type Rkey = Set<members::rkey>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `repo` field
        pub struct repo(());
        ///Marker type for the `rkey` field
        pub struct rkey(());
    }
}

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

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

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

impl<S: BosStr, St> GetListingBuilder<S, St>
where
    St: get_listing_state::State,
    St::Repo: get_listing_state::IsUnset,
{
    /// Set the `repo` field (required)
    pub fn repo(
        mut self,
        value: impl Into<AtIdentifier<S>>,
    ) -> GetListingBuilder<S, get_listing_state::SetRepo<St>> {
        self._fields.0 = Option::Some(value.into());
        GetListingBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> GetListingBuilder<S, St>
where
    St: get_listing_state::State,
    St::Rkey: get_listing_state::IsUnset,
{
    /// Set the `rkey` field (required)
    pub fn rkey(
        mut self,
        value: impl Into<S>,
    ) -> GetListingBuilder<S, get_listing_state::SetRkey<St>> {
        self._fields.1 = Option::Some(value.into());
        GetListingBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> GetListingBuilder<S, St>
where
    St: get_listing_state::State,
    St::Repo: get_listing_state::IsSet,
    St::Rkey: get_listing_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> GetListing<S> {
        GetListing {
            repo: self._fields.0.unwrap(),
            rkey: self._fields.1.unwrap(),
        }
    }
}