#[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 {}
}
pub trait State: sealed::Sealed {
type Rkey;
type Repo;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Rkey = Unset;
type Repo = Unset;
}
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;
}
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>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct rkey(());
pub struct repo(());
}
}
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> {
pub fn new() -> GetListingBuilder<'a, get_listing_state::Empty> {
GetListingBuilder::new()
}
}
impl<'a> GetListingBuilder<'a, get_listing_state::Empty> {
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,
{
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,
{
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,
{
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> {
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub cid: std::option::Option<jacquard_common::types::string::Cid<'a>>,
#[serde(borrow)]
pub uri: jacquard_common::types::string::AtUri<'a>,
#[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> {
#[serde(rename = "ListingNotFound")]
ListingNotFound(std::option::Option<jacquard_common::CowStr<'a>>),
#[serde(rename = "ListingParseFailed")]
ListingParseFailed(std::option::Option<jacquard_common::CowStr<'a>>),
#[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),
}
}
}
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;
}
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;
}