jacquard-api 0.10.2

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.

#[derive(
    serde::Serialize,
    serde::Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct GetListing<'a> {
    #[serde(borrow)]
    pub repo: jacquard_common::types::ident::AtIdentifier<'a>,
    #[serde(borrow)]
    pub rkey: jacquard_common::CowStr<'a>,
}

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

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

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

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

impl<'a, S> GetListingBuilder<'a, S>
where
    S: get_listing_state::State,
    S::Repo: get_listing_state::IsUnset,
{
    /// Set the `repo` field (required)
    pub fn repo(
        mut self,
        value: impl Into<jacquard_common::types::ident::AtIdentifier<'a>>,
    ) -> GetListingBuilder<'a, get_listing_state::SetRepo<S>> {
        self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into());
        GetListingBuilder {
            _phantom_state: ::core::marker::PhantomData,
            __unsafe_private_named: self.__unsafe_private_named,
            _phantom: ::core::marker::PhantomData,
        }
    }
}

impl<'a, S> GetListingBuilder<'a, S>
where
    S: get_listing_state::State,
    S::Rkey: get_listing_state::IsUnset,
{
    /// Set the `rkey` field (required)
    pub fn rkey(
        mut self,
        value: impl Into<jacquard_common::CowStr<'a>>,
    ) -> GetListingBuilder<'a, get_listing_state::SetRkey<S>> {
        self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into());
        GetListingBuilder {
            _phantom_state: ::core::marker::PhantomData,
            __unsafe_private_named: self.__unsafe_private_named,
            _phantom: ::core::marker::PhantomData,
        }
    }
}

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

#[jacquard_derive::lexicon]
#[derive(
    serde::Serialize,
    serde::Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct GetListingOutput<'a> {
    ///CID of the listing record
    #[serde(skip_serializing_if = "std::option::Option::is_none")]
    #[serde(borrow)]
    pub cid: std::option::Option<jacquard_common::types::string::Cid<'a>>,
    ///AT-URI of the listing
    #[serde(borrow)]
    pub uri: jacquard_common::types::string::AtUri<'a>,
    ///The job listing record
    #[serde(borrow)]
    pub value: crate::place_atwork::listing::Listing<'a>,
}

#[jacquard_derive::open_union]
#[derive(
    serde::Serialize,
    serde::Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    thiserror::Error,
    miette::Diagnostic,
    jacquard_derive::IntoStatic
)]
#[serde(tag = "error", content = "message")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum GetListingError<'a> {
    /// The requested listing does not exist
    #[serde(rename = "ListingNotFound")]
    ListingNotFound(std::option::Option<jacquard_common::CowStr<'a>>),
    /// Failed to parse the listing data
    #[serde(rename = "ListingParseFailed")]
    ListingParseFailed(std::option::Option<jacquard_common::CowStr<'a>>),
    /// Failed to fetch the listing from storage
    #[serde(rename = "ListingFetchFailed")]
    ListingFetchFailed(std::option::Option<jacquard_common::CowStr<'a>>),
}

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::Unknown(err) => write!(f, "Unknown error: {:?}", err),
        }
    }
}

/// 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<'de> = GetListingOutput<'de>;
    type Err<'de> = GetListingError<'de>;
}

impl<'a> jacquard_common::xrpc::XrpcRequest for GetListing<'a> {
    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<'de> = GetListing<'de>;
    type Response = GetListingResponse;
}