pub mod badge;
pub mod branding;
pub mod broadcast;
pub mod chat;
pub mod graph;
pub mod ingest;
pub mod key;
pub mod live;
pub mod livestream;
pub mod metadata;
pub mod moderation;
pub mod multistream;
pub mod playback;
pub mod richtext;
pub mod segment;
pub mod server;
#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::types::string::{AtUri, Cid, Datetime};
use jacquard_derive::{IntoStatic, lexicon};
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::actor::ProfileViewBasic;
use crate::app_bsky::graph::block::Block;
use crate::place_stream;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct BlockView<'a> {
#[serde(borrow)]
pub blocker: ProfileViewBasic<'a>,
#[serde(borrow)]
pub cid: Cid<'a>,
pub indexed_at: Datetime,
#[serde(borrow)]
pub record: Block<'a>,
#[serde(borrow)]
pub uri: AtUri<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct Rendition<'a> {
#[serde(borrow)]
pub name: CowStr<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Renditions<'a> {
#[serde(borrow)]
pub renditions: Vec<place_stream::Rendition<'a>>,
}
impl<'a> LexiconSchema for BlockView<'a> {
fn nsid() -> &'static str {
"place.stream.defs"
}
fn def_name() -> &'static str {
"blockView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_place_stream_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<'a> LexiconSchema for Rendition<'a> {
fn nsid() -> &'static str {
"place.stream.defs"
}
fn def_name() -> &'static str {
"rendition"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_place_stream_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<'a> LexiconSchema for Renditions<'a> {
fn nsid() -> &'static str {
"place.stream.defs"
}
fn def_name() -> &'static str {
"renditions"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_place_stream_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod block_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 Blocker;
type IndexedAt;
type Cid;
type Record;
type Uri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Blocker = Unset;
type IndexedAt = Unset;
type Cid = Unset;
type Record = Unset;
type Uri = Unset;
}
pub struct SetBlocker<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetBlocker<S> {}
impl<S: State> State for SetBlocker<S> {
type Blocker = Set<members::blocker>;
type IndexedAt = S::IndexedAt;
type Cid = S::Cid;
type Record = S::Record;
type Uri = S::Uri;
}
pub struct SetIndexedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetIndexedAt<S> {}
impl<S: State> State for SetIndexedAt<S> {
type Blocker = S::Blocker;
type IndexedAt = Set<members::indexed_at>;
type Cid = S::Cid;
type Record = S::Record;
type Uri = S::Uri;
}
pub struct SetCid<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCid<S> {}
impl<S: State> State for SetCid<S> {
type Blocker = S::Blocker;
type IndexedAt = S::IndexedAt;
type Cid = Set<members::cid>;
type Record = S::Record;
type Uri = S::Uri;
}
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 Blocker = S::Blocker;
type IndexedAt = S::IndexedAt;
type Cid = S::Cid;
type Record = Set<members::record>;
type Uri = S::Uri;
}
pub struct SetUri<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUri<S> {}
impl<S: State> State for SetUri<S> {
type Blocker = S::Blocker;
type IndexedAt = S::IndexedAt;
type Cid = S::Cid;
type Record = S::Record;
type Uri = Set<members::uri>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct blocker(());
pub struct indexed_at(());
pub struct cid(());
pub struct record(());
pub struct uri(());
}
}
pub struct BlockViewBuilder<'a, S: block_view_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<ProfileViewBasic<'a>>,
Option<Cid<'a>>,
Option<Datetime>,
Option<Block<'a>>,
Option<AtUri<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> BlockView<'a> {
pub fn new() -> BlockViewBuilder<'a, block_view_state::Empty> {
BlockViewBuilder::new()
}
}
impl<'a> BlockViewBuilder<'a, block_view_state::Empty> {
pub fn new() -> Self {
BlockViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> BlockViewBuilder<'a, S>
where
S: block_view_state::State,
S::Blocker: block_view_state::IsUnset,
{
pub fn blocker(
mut self,
value: impl Into<ProfileViewBasic<'a>>,
) -> BlockViewBuilder<'a, block_view_state::SetBlocker<S>> {
self._fields.0 = Option::Some(value.into());
BlockViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> BlockViewBuilder<'a, S>
where
S: block_view_state::State,
S::Cid: block_view_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<'a>>,
) -> BlockViewBuilder<'a, block_view_state::SetCid<S>> {
self._fields.1 = Option::Some(value.into());
BlockViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> BlockViewBuilder<'a, S>
where
S: block_view_state::State,
S::IndexedAt: block_view_state::IsUnset,
{
pub fn indexed_at(
mut self,
value: impl Into<Datetime>,
) -> BlockViewBuilder<'a, block_view_state::SetIndexedAt<S>> {
self._fields.2 = Option::Some(value.into());
BlockViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> BlockViewBuilder<'a, S>
where
S: block_view_state::State,
S::Record: block_view_state::IsUnset,
{
pub fn record(
mut self,
value: impl Into<Block<'a>>,
) -> BlockViewBuilder<'a, block_view_state::SetRecord<S>> {
self._fields.3 = Option::Some(value.into());
BlockViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> BlockViewBuilder<'a, S>
where
S: block_view_state::State,
S::Uri: block_view_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<'a>>,
) -> BlockViewBuilder<'a, block_view_state::SetUri<S>> {
self._fields.4 = Option::Some(value.into());
BlockViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> BlockViewBuilder<'a, S>
where
S: block_view_state::State,
S::Blocker: block_view_state::IsSet,
S::IndexedAt: block_view_state::IsSet,
S::Cid: block_view_state::IsSet,
S::Record: block_view_state::IsSet,
S::Uri: block_view_state::IsSet,
{
pub fn build(self) -> BlockView<'a> {
BlockView {
blocker: self._fields.0.unwrap(),
cid: self._fields.1.unwrap(),
indexed_at: self._fields.2.unwrap(),
record: self._fields.3.unwrap(),
uri: self._fields.4.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>,
>,
) -> BlockView<'a> {
BlockView {
blocker: self._fields.0.unwrap(),
cid: self._fields.1.unwrap(),
indexed_at: self._fields.2.unwrap(),
record: self._fields.3.unwrap(),
uri: self._fields.4.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_place_stream_defs() -> 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("place.stream.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("blockView"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("uri"), SmolStr::new_static("cid"),
SmolStr::new_static("blocker"),
SmolStr::new_static("record"),
SmolStr::new_static("indexedAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("blocker"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"app.bsky.actor.defs#profileViewBasic",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Cid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("indexedAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("record"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("app.bsky.graph.block"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("rendition"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("name")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("renditions"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("renditions")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("renditions"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("#rendition"),
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod renditions_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 Renditions;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Renditions = Unset;
}
pub struct SetRenditions<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRenditions<S> {}
impl<S: State> State for SetRenditions<S> {
type Renditions = Set<members::renditions>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct renditions(());
}
}
pub struct RenditionsBuilder<'a, S: renditions_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Vec<place_stream::Rendition<'a>>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Renditions<'a> {
pub fn new() -> RenditionsBuilder<'a, renditions_state::Empty> {
RenditionsBuilder::new()
}
}
impl<'a> RenditionsBuilder<'a, renditions_state::Empty> {
pub fn new() -> Self {
RenditionsBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S> RenditionsBuilder<'a, S>
where
S: renditions_state::State,
S::Renditions: renditions_state::IsUnset,
{
pub fn renditions(
mut self,
value: impl Into<Vec<place_stream::Rendition<'a>>>,
) -> RenditionsBuilder<'a, renditions_state::SetRenditions<S>> {
self._fields.0 = Option::Some(value.into());
RenditionsBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> RenditionsBuilder<'a, S>
where
S: renditions_state::State,
S::Renditions: renditions_state::IsSet,
{
pub fn build(self) -> Renditions<'a> {
Renditions {
renditions: self._fields.0.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>,
>,
) -> Renditions<'a> {
Renditions {
renditions: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}