// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: app.bsky.feed.getPosts // // 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 GetPosts<'a> { #[serde(borrow)] pub uris: Vec>, } pub mod get_posts_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 Uris; } /// Empty state - all required fields are unset pub struct Empty(()); impl sealed::Sealed for Empty {} impl State for Empty { type Uris = Unset; } ///State transition - sets the `uris` field to Set pub struct SetUris(PhantomData S>); impl sealed::Sealed for SetUris {} impl State for SetUris { type Uris = Set; } /// Marker types for field names #[allow(non_camel_case_types)] pub mod members { ///Marker type for the `uris` field pub struct uris(()); } } /// Builder for constructing an instance of this type pub struct GetPostsBuilder<'a, S: get_posts_state::State> { _phantom_state: ::core::marker::PhantomData S>, __unsafe_private_named: ( ::core::option::Option>>, ), _phantom: ::core::marker::PhantomData<&'a ()>, } impl<'a> GetPosts<'a> { /// Create a new builder for this type pub fn new() -> GetPostsBuilder<'a, get_posts_state::Empty> { GetPostsBuilder::new() } } impl<'a> GetPostsBuilder<'a, get_posts_state::Empty> { /// Create a new builder with all fields unset pub fn new() -> Self { GetPostsBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: (None,), _phantom: ::core::marker::PhantomData, } } } impl<'a, S> GetPostsBuilder<'a, S> where S: get_posts_state::State, S::Uris: get_posts_state::IsUnset, { /// Set the `uris` field (required) pub fn uris( mut self, value: impl Into>>, ) -> GetPostsBuilder<'a, get_posts_state::SetUris> { self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into()); GetPostsBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> GetPostsBuilder<'a, S> where S: get_posts_state::State, S::Uris: get_posts_state::IsSet, { /// Build the final struct pub fn build(self) -> GetPosts<'a> { GetPosts { uris: self.__unsafe_private_named.0.unwrap(), } } } #[jacquard_derive::lexicon] #[derive( serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq, jacquard_derive::IntoStatic )] #[serde(rename_all = "camelCase")] pub struct GetPostsOutput<'a> { #[serde(borrow)] pub posts: Vec>, } /// Response type for ///app.bsky.feed.getPosts pub struct GetPostsResponse; impl jacquard_common::xrpc::XrpcResp for GetPostsResponse { const NSID: &'static str = "app.bsky.feed.getPosts"; const ENCODING: &'static str = "application/json"; type Output<'de> = GetPostsOutput<'de>; type Err<'de> = jacquard_common::xrpc::GenericError<'de>; } impl<'a> jacquard_common::xrpc::XrpcRequest for GetPosts<'a> { const NSID: &'static str = "app.bsky.feed.getPosts"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query; type Response = GetPostsResponse; } /// Endpoint type for ///app.bsky.feed.getPosts pub struct GetPostsRequest; impl jacquard_common::xrpc::XrpcEndpoint for GetPostsRequest { const PATH: &'static str = "/xrpc/app.bsky.feed.getPosts"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query; type Request<'de> = GetPosts<'de>; type Response = GetPostsResponse; }