// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: app.bsky.video.getJobStatus // // 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 GetJobStatus<'a> { #[serde(borrow)] pub job_id: jacquard_common::CowStr<'a>, } pub mod get_job_status_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 JobId; } /// Empty state - all required fields are unset pub struct Empty(()); impl sealed::Sealed for Empty {} impl State for Empty { type JobId = Unset; } ///State transition - sets the `job_id` field to Set pub struct SetJobId(PhantomData S>); impl sealed::Sealed for SetJobId {} impl State for SetJobId { type JobId = Set; } /// Marker types for field names #[allow(non_camel_case_types)] pub mod members { ///Marker type for the `job_id` field pub struct job_id(()); } } /// Builder for constructing an instance of this type pub struct GetJobStatusBuilder<'a, S: get_job_status_state::State> { _phantom_state: ::core::marker::PhantomData S>, __unsafe_private_named: (::core::option::Option>,), _phantom: ::core::marker::PhantomData<&'a ()>, } impl<'a> GetJobStatus<'a> { /// Create a new builder for this type pub fn new() -> GetJobStatusBuilder<'a, get_job_status_state::Empty> { GetJobStatusBuilder::new() } } impl<'a> GetJobStatusBuilder<'a, get_job_status_state::Empty> { /// Create a new builder with all fields unset pub fn new() -> Self { GetJobStatusBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: (None,), _phantom: ::core::marker::PhantomData, } } } impl<'a, S> GetJobStatusBuilder<'a, S> where S: get_job_status_state::State, S::JobId: get_job_status_state::IsUnset, { /// Set the `jobId` field (required) pub fn job_id( mut self, value: impl Into>, ) -> GetJobStatusBuilder<'a, get_job_status_state::SetJobId> { self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into()); GetJobStatusBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> GetJobStatusBuilder<'a, S> where S: get_job_status_state::State, S::JobId: get_job_status_state::IsSet, { /// Build the final struct pub fn build(self) -> GetJobStatus<'a> { GetJobStatus { job_id: 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 GetJobStatusOutput<'a> { #[serde(borrow)] pub job_status: crate::app_bsky::video::JobStatus<'a>, } /// Response type for ///app.bsky.video.getJobStatus pub struct GetJobStatusResponse; impl jacquard_common::xrpc::XrpcResp for GetJobStatusResponse { const NSID: &'static str = "app.bsky.video.getJobStatus"; const ENCODING: &'static str = "application/json"; type Output<'de> = GetJobStatusOutput<'de>; type Err<'de> = jacquard_common::xrpc::GenericError<'de>; } impl<'a> jacquard_common::xrpc::XrpcRequest for GetJobStatus<'a> { const NSID: &'static str = "app.bsky.video.getJobStatus"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query; type Response = GetJobStatusResponse; } /// Endpoint type for ///app.bsky.video.getJobStatus pub struct GetJobStatusRequest; impl jacquard_common::xrpc::XrpcEndpoint for GetJobStatusRequest { const PATH: &'static str = "/xrpc/app.bsky.video.getJobStatus"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query; type Request<'de> = GetJobStatus<'de>; type Response = GetJobStatusResponse; }