#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_derive::{IntoStatic, lexicon, open_union};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
use crate::app_bsky::embed::external::ExternalRecord;
use crate::app_bsky::embed::images::Images;
use crate::app_bsky::embed::record::Record;
use crate::app_bsky::embed::video::Video;
use crate::app_bsky::embed::external;
use crate::app_bsky::embed::images;
use crate::app_bsky::embed::record;
use crate::app_bsky::embed::video;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct RecordWithMedia<'a> {
#[serde(borrow)]
pub media: RecordWithMediaMedia<'a>,
#[serde(borrow)]
pub record: Record<'a>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "'de: 'a"))]
pub enum RecordWithMediaMedia<'a> {
#[serde(rename = "app.bsky.embed.images")]
Images(Box<Images<'a>>),
#[serde(rename = "app.bsky.embed.video")]
Video(Box<Video<'a>>),
#[serde(rename = "app.bsky.embed.external")]
External(Box<ExternalRecord<'a>>),
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct View<'a> {
#[serde(borrow)]
pub media: ViewMedia<'a>,
#[serde(borrow)]
pub record: record::View<'a>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "'de: 'a"))]
pub enum ViewMedia<'a> {
#[serde(rename = "app.bsky.embed.images#view")]
ImagesView(Box<images::View<'a>>),
#[serde(rename = "app.bsky.embed.video#view")]
VideoView(Box<video::View<'a>>),
#[serde(rename = "app.bsky.embed.external#view")]
ExternalView(Box<external::View<'a>>),
}
impl<'a> LexiconSchema for RecordWithMedia<'a> {
fn nsid() -> &'static str {
"app.bsky.embed.recordWithMedia"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_bsky_embed_recordWithMedia()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<'a> LexiconSchema for View<'a> {
fn nsid() -> &'static str {
"app.bsky.embed.recordWithMedia"
}
fn def_name() -> &'static str {
"view"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_bsky_embed_recordWithMedia()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod record_with_media_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 Media;
type Record;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Media = Unset;
type Record = Unset;
}
pub struct SetMedia<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetMedia<S> {}
impl<S: State> State for SetMedia<S> {
type Media = Set<members::media>;
type Record = S::Record;
}
pub struct SetRecord<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRecord<S> {}
impl<S: State> State for SetRecord<S> {
type Media = S::Media;
type Record = Set<members::record>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct media(());
pub struct record(());
}
}
pub struct RecordWithMediaBuilder<'a, S: record_with_media_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<RecordWithMediaMedia<'a>>, Option<Record<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> RecordWithMedia<'a> {
pub fn new() -> RecordWithMediaBuilder<'a, record_with_media_state::Empty> {
RecordWithMediaBuilder::new()
}
}
impl<'a> RecordWithMediaBuilder<'a, record_with_media_state::Empty> {
pub fn new() -> Self {
RecordWithMediaBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> RecordWithMediaBuilder<'a, S>
where
S: record_with_media_state::State,
S::Media: record_with_media_state::IsUnset,
{
pub fn media(
mut self,
value: impl Into<RecordWithMediaMedia<'a>>,
) -> RecordWithMediaBuilder<'a, record_with_media_state::SetMedia<S>> {
self._fields.0 = Option::Some(value.into());
RecordWithMediaBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> RecordWithMediaBuilder<'a, S>
where
S: record_with_media_state::State,
S::Record: record_with_media_state::IsUnset,
{
pub fn record(
mut self,
value: impl Into<Record<'a>>,
) -> RecordWithMediaBuilder<'a, record_with_media_state::SetRecord<S>> {
self._fields.1 = Option::Some(value.into());
RecordWithMediaBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> RecordWithMediaBuilder<'a, S>
where
S: record_with_media_state::State,
S::Media: record_with_media_state::IsSet,
S::Record: record_with_media_state::IsSet,
{
pub fn build(self) -> RecordWithMedia<'a> {
RecordWithMedia {
media: self._fields.0.unwrap(),
record: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> RecordWithMedia<'a> {
RecordWithMedia {
media: self._fields.0.unwrap(),
record: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_app_bsky_embed_recordWithMedia() -> LexiconDoc<'static> {
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
use alloc::collections::BTreeMap;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("app.bsky.embed.recordWithMedia"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Object(LexObject {
required: Some(
vec![SmolStr::new_static("record"), SmolStr::new_static("media")],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("media"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![
CowStr::new_static("app.bsky.embed.images"),
CowStr::new_static("app.bsky.embed.video"),
CowStr::new_static("app.bsky.embed.external")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("record"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("app.bsky.embed.record"),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("view"),
LexUserType::Object(LexObject {
required: Some(
vec![SmolStr::new_static("record"), SmolStr::new_static("media")],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("media"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![
CowStr::new_static("app.bsky.embed.images#view"),
CowStr::new_static("app.bsky.embed.video#view"),
CowStr::new_static("app.bsky.embed.external#view")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("record"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("app.bsky.embed.record#view"),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod view_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 Record;
type Media;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Record = Unset;
type Media = Unset;
}
pub struct SetRecord<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRecord<S> {}
impl<S: State> State for SetRecord<S> {
type Record = Set<members::record>;
type Media = S::Media;
}
pub struct SetMedia<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetMedia<S> {}
impl<S: State> State for SetMedia<S> {
type Record = S::Record;
type Media = Set<members::media>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct record(());
pub struct media(());
}
}
pub struct ViewBuilder<'a, S: view_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<ViewMedia<'a>>, Option<record::View<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> View<'a> {
pub fn new() -> ViewBuilder<'a, view_state::Empty> {
ViewBuilder::new()
}
}
impl<'a> ViewBuilder<'a, view_state::Empty> {
pub fn new() -> Self {
ViewBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> ViewBuilder<'a, S>
where
S: view_state::State,
S::Media: view_state::IsUnset,
{
pub fn media(
mut self,
value: impl Into<ViewMedia<'a>>,
) -> ViewBuilder<'a, view_state::SetMedia<S>> {
self._fields.0 = Option::Some(value.into());
ViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ViewBuilder<'a, S>
where
S: view_state::State,
S::Record: view_state::IsUnset,
{
pub fn record(
mut self,
value: impl Into<record::View<'a>>,
) -> ViewBuilder<'a, view_state::SetRecord<S>> {
self._fields.1 = Option::Some(value.into());
ViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ViewBuilder<'a, S>
where
S: view_state::State,
S::Record: view_state::IsSet,
S::Media: view_state::IsSet,
{
pub fn build(self) -> View<'a> {
View {
media: self._fields.0.unwrap(),
record: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> View<'a> {
View {
media: self._fields.0.unwrap(),
record: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}