// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: sh.weaver.notebook.resolveVersionConflict // // 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 ResolveVersionConflict<'a> { #[serde(borrow)] pub uris: Vec>, } pub mod resolve_version_conflict_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 ResolveVersionConflictBuilder<'a, S: resolve_version_conflict_state::State> { _phantom_state: ::core::marker::PhantomData S>, __unsafe_private_named: ( ::core::option::Option>>, ), _phantom: ::core::marker::PhantomData<&'a ()>, } impl<'a> ResolveVersionConflict<'a> { /// Create a new builder for this type pub fn new() -> ResolveVersionConflictBuilder< 'a, resolve_version_conflict_state::Empty, > { ResolveVersionConflictBuilder::new() } } impl<'a> ResolveVersionConflictBuilder<'a, resolve_version_conflict_state::Empty> { /// Create a new builder with all fields unset pub fn new() -> Self { ResolveVersionConflictBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: (None,), _phantom: ::core::marker::PhantomData, } } } impl<'a, S> ResolveVersionConflictBuilder<'a, S> where S: resolve_version_conflict_state::State, S::Uris: resolve_version_conflict_state::IsUnset, { /// Set the `uris` field (required) pub fn uris( mut self, value: impl Into>>, ) -> ResolveVersionConflictBuilder<'a, resolve_version_conflict_state::SetUris> { self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into()); ResolveVersionConflictBuilder { _phantom_state: ::core::marker::PhantomData, __unsafe_private_named: self.__unsafe_private_named, _phantom: ::core::marker::PhantomData, } } } impl<'a, S> ResolveVersionConflictBuilder<'a, S> where S: resolve_version_conflict_state::State, S::Uris: resolve_version_conflict_state::IsSet, { /// Build the final struct pub fn build(self) -> ResolveVersionConflict<'a> { ResolveVersionConflict { 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 ResolveVersionConflictOutput<'a> { #[serde(borrow)] pub canonical: crate::sh_weaver::notebook::PublishedVersionView<'a>, #[serde(skip_serializing_if = "std::option::Option::is_none")] #[serde(borrow)] pub collaboration_state: std::option::Option< crate::sh_weaver::collab::CollaborationStateView<'a>, >, #[serde(borrow)] pub related: Vec>, } #[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 ResolveVersionConflictError<'a> { /// The URIs don't appear to be related versions #[serde(rename = "NoRelatedVersions")] NoRelatedVersions(std::option::Option>), } impl core::fmt::Display for ResolveVersionConflictError<'_> { fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { match self { Self::NoRelatedVersions(msg) => { write!(f, "NoRelatedVersions")?; if let Some(msg) = msg { write!(f, ": {}", msg)?; } Ok(()) } Self::Unknown(err) => write!(f, "Unknown error: {:?}", err), } } } /// Response type for ///sh.weaver.notebook.resolveVersionConflict pub struct ResolveVersionConflictResponse; impl jacquard_common::xrpc::XrpcResp for ResolveVersionConflictResponse { const NSID: &'static str = "sh.weaver.notebook.resolveVersionConflict"; const ENCODING: &'static str = "application/json"; type Output<'de> = ResolveVersionConflictOutput<'de>; type Err<'de> = ResolveVersionConflictError<'de>; } impl<'a> jacquard_common::xrpc::XrpcRequest for ResolveVersionConflict<'a> { const NSID: &'static str = "sh.weaver.notebook.resolveVersionConflict"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query; type Response = ResolveVersionConflictResponse; } /// Endpoint type for ///sh.weaver.notebook.resolveVersionConflict pub struct ResolveVersionConflictRequest; impl jacquard_common::xrpc::XrpcEndpoint for ResolveVersionConflictRequest { const PATH: &'static str = "/xrpc/sh.weaver.notebook.resolveVersionConflict"; const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query; type Request<'de> = ResolveVersionConflict<'de>; type Response = ResolveVersionConflictResponse; }