pub mod comment;
pub mod gate;
pub mod get_comments;
#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::{AtUri, Cid, Datetime};
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
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::place_stream::vod;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct CommentView<S: BosStr = DefaultStr> {
pub author: ProfileViewBasic<S>,
pub cid: Cid<S>,
pub indexed_at: Datetime,
pub like_count: i64,
pub record: Data<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub reply_to: Option<vod::CommentViewBasic<S>>,
pub uri: AtUri<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct CommentViewBasic<S: BosStr = DefaultStr> {
pub author: ProfileViewBasic<S>,
pub cid: Cid<S>,
pub indexed_at: Datetime,
pub like_count: i64,
pub record: Data<S>,
pub uri: AtUri<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> LexiconSchema for CommentView<S> {
fn nsid() -> &'static str {
"place.stream.vod.defs"
}
fn def_name() -> &'static str {
"commentView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_place_stream_vod_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.like_count;
if *value < 0i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("like_count"),
min: 0i64,
actual: *value,
});
}
}
Ok(())
}
}
impl<S: BosStr> LexiconSchema for CommentViewBasic<S> {
fn nsid() -> &'static str {
"place.stream.vod.defs"
}
fn def_name() -> &'static str {
"commentViewBasic"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_place_stream_vod_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.like_count;
if *value < 0i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("like_count"),
min: 0i64,
actual: *value,
});
}
}
Ok(())
}
}
pub mod comment_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 Author;
type Cid;
type IndexedAt;
type LikeCount;
type Record;
type Uri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Author = Unset;
type Cid = Unset;
type IndexedAt = Unset;
type LikeCount = Unset;
type Record = Unset;
type Uri = Unset;
}
pub struct SetAuthor<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAuthor<St> {}
impl<St: State> State for SetAuthor<St> {
type Author = Set<members::author>;
type Cid = St::Cid;
type IndexedAt = St::IndexedAt;
type LikeCount = St::LikeCount;
type Record = St::Record;
type Uri = St::Uri;
}
pub struct SetCid<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCid<St> {}
impl<St: State> State for SetCid<St> {
type Author = St::Author;
type Cid = Set<members::cid>;
type IndexedAt = St::IndexedAt;
type LikeCount = St::LikeCount;
type Record = St::Record;
type Uri = St::Uri;
}
pub struct SetIndexedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetIndexedAt<St> {}
impl<St: State> State for SetIndexedAt<St> {
type Author = St::Author;
type Cid = St::Cid;
type IndexedAt = Set<members::indexed_at>;
type LikeCount = St::LikeCount;
type Record = St::Record;
type Uri = St::Uri;
}
pub struct SetLikeCount<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetLikeCount<St> {}
impl<St: State> State for SetLikeCount<St> {
type Author = St::Author;
type Cid = St::Cid;
type IndexedAt = St::IndexedAt;
type LikeCount = Set<members::like_count>;
type Record = St::Record;
type Uri = St::Uri;
}
pub struct SetRecord<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRecord<St> {}
impl<St: State> State for SetRecord<St> {
type Author = St::Author;
type Cid = St::Cid;
type IndexedAt = St::IndexedAt;
type LikeCount = St::LikeCount;
type Record = Set<members::record>;
type Uri = St::Uri;
}
pub struct SetUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUri<St> {}
impl<St: State> State for SetUri<St> {
type Author = St::Author;
type Cid = St::Cid;
type IndexedAt = St::IndexedAt;
type LikeCount = St::LikeCount;
type Record = St::Record;
type Uri = Set<members::uri>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct author(());
pub struct cid(());
pub struct indexed_at(());
pub struct like_count(());
pub struct record(());
pub struct uri(());
}
}
pub struct CommentViewBuilder<St: comment_view_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<ProfileViewBasic<S>>,
Option<Cid<S>>,
Option<Datetime>,
Option<i64>,
Option<Data<S>>,
Option<vod::CommentViewBasic<S>>,
Option<AtUri<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl CommentView<DefaultStr> {
pub fn new() -> CommentViewBuilder<comment_view_state::Empty, DefaultStr> {
CommentViewBuilder::new()
}
}
impl<S: BosStr> CommentView<S> {
pub fn builder() -> CommentViewBuilder<comment_view_state::Empty, S> {
CommentViewBuilder::builder()
}
}
impl CommentViewBuilder<comment_view_state::Empty, DefaultStr> {
pub fn new() -> Self {
CommentViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> CommentViewBuilder<comment_view_state::Empty, S> {
pub fn builder() -> Self {
CommentViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CommentViewBuilder<St, S>
where
St: comment_view_state::State,
St::Author: comment_view_state::IsUnset,
{
pub fn author(
mut self,
value: impl Into<ProfileViewBasic<S>>,
) -> CommentViewBuilder<comment_view_state::SetAuthor<St>, S> {
self._fields.0 = Option::Some(value.into());
CommentViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CommentViewBuilder<St, S>
where
St: comment_view_state::State,
St::Cid: comment_view_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<S>>,
) -> CommentViewBuilder<comment_view_state::SetCid<St>, S> {
self._fields.1 = Option::Some(value.into());
CommentViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CommentViewBuilder<St, S>
where
St: comment_view_state::State,
St::IndexedAt: comment_view_state::IsUnset,
{
pub fn indexed_at(
mut self,
value: impl Into<Datetime>,
) -> CommentViewBuilder<comment_view_state::SetIndexedAt<St>, S> {
self._fields.2 = Option::Some(value.into());
CommentViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CommentViewBuilder<St, S>
where
St: comment_view_state::State,
St::LikeCount: comment_view_state::IsUnset,
{
pub fn like_count(
mut self,
value: impl Into<i64>,
) -> CommentViewBuilder<comment_view_state::SetLikeCount<St>, S> {
self._fields.3 = Option::Some(value.into());
CommentViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CommentViewBuilder<St, S>
where
St: comment_view_state::State,
St::Record: comment_view_state::IsUnset,
{
pub fn record(
mut self,
value: impl Into<Data<S>>,
) -> CommentViewBuilder<comment_view_state::SetRecord<St>, S> {
self._fields.4 = Option::Some(value.into());
CommentViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: comment_view_state::State, S: BosStr> CommentViewBuilder<St, S> {
pub fn reply_to(
mut self,
value: impl Into<Option<vod::CommentViewBasic<S>>>,
) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_reply_to(mut self, value: Option<vod::CommentViewBasic<S>>) -> Self {
self._fields.5 = value;
self
}
}
impl<St, S: BosStr> CommentViewBuilder<St, S>
where
St: comment_view_state::State,
St::Uri: comment_view_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<S>>,
) -> CommentViewBuilder<comment_view_state::SetUri<St>, S> {
self._fields.6 = Option::Some(value.into());
CommentViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CommentViewBuilder<St, S>
where
St: comment_view_state::State,
St::Author: comment_view_state::IsSet,
St::Cid: comment_view_state::IsSet,
St::IndexedAt: comment_view_state::IsSet,
St::LikeCount: comment_view_state::IsSet,
St::Record: comment_view_state::IsSet,
St::Uri: comment_view_state::IsSet,
{
pub fn build(self) -> CommentView<S> {
CommentView {
author: self._fields.0.unwrap(),
cid: self._fields.1.unwrap(),
indexed_at: self._fields.2.unwrap(),
like_count: self._fields.3.unwrap(),
record: self._fields.4.unwrap(),
reply_to: self._fields.5,
uri: self._fields.6.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> CommentView<S> {
CommentView {
author: self._fields.0.unwrap(),
cid: self._fields.1.unwrap(),
indexed_at: self._fields.2.unwrap(),
like_count: self._fields.3.unwrap(),
record: self._fields.4.unwrap(),
reply_to: self._fields.5,
uri: self._fields.6.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_place_stream_vod_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.vod.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("commentView"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("uri"), SmolStr::new_static("cid"),
SmolStr::new_static("author"), SmolStr::new_static("record"),
SmolStr::new_static("indexedAt"),
SmolStr::new_static("likeCount")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("author"),
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("likeCount"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(0i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("record"),
LexObjectProperty::Unknown(LexUnknown {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("replyTo"),
LexObjectProperty::Union(LexRefUnion {
description: Some(
CowStr::new_static(
"The parent comment this one replies to, if any. A non-recursive view (it carries no replyTo of its own), so the thread is flattened to a single hop; walk `record.reply` to follow the chain further.",
),
),
refs: vec![CowStr::new_static("#commentViewBasic")],
..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("commentViewBasic"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static(
"A comment view without its own `replyTo`, used to represent the parent of a reply without recursively nesting the whole thread.",
),
),
required: Some(
vec![
SmolStr::new_static("uri"), SmolStr::new_static("cid"),
SmolStr::new_static("author"), SmolStr::new_static("record"),
SmolStr::new_static("indexedAt"),
SmolStr::new_static("likeCount")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("author"),
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("likeCount"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(0i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("record"),
LexObjectProperty::Unknown(LexUnknown {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod comment_view_basic_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 Author;
type Cid;
type IndexedAt;
type LikeCount;
type Record;
type Uri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Author = Unset;
type Cid = Unset;
type IndexedAt = Unset;
type LikeCount = Unset;
type Record = Unset;
type Uri = Unset;
}
pub struct SetAuthor<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAuthor<St> {}
impl<St: State> State for SetAuthor<St> {
type Author = Set<members::author>;
type Cid = St::Cid;
type IndexedAt = St::IndexedAt;
type LikeCount = St::LikeCount;
type Record = St::Record;
type Uri = St::Uri;
}
pub struct SetCid<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCid<St> {}
impl<St: State> State for SetCid<St> {
type Author = St::Author;
type Cid = Set<members::cid>;
type IndexedAt = St::IndexedAt;
type LikeCount = St::LikeCount;
type Record = St::Record;
type Uri = St::Uri;
}
pub struct SetIndexedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetIndexedAt<St> {}
impl<St: State> State for SetIndexedAt<St> {
type Author = St::Author;
type Cid = St::Cid;
type IndexedAt = Set<members::indexed_at>;
type LikeCount = St::LikeCount;
type Record = St::Record;
type Uri = St::Uri;
}
pub struct SetLikeCount<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetLikeCount<St> {}
impl<St: State> State for SetLikeCount<St> {
type Author = St::Author;
type Cid = St::Cid;
type IndexedAt = St::IndexedAt;
type LikeCount = Set<members::like_count>;
type Record = St::Record;
type Uri = St::Uri;
}
pub struct SetRecord<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRecord<St> {}
impl<St: State> State for SetRecord<St> {
type Author = St::Author;
type Cid = St::Cid;
type IndexedAt = St::IndexedAt;
type LikeCount = St::LikeCount;
type Record = Set<members::record>;
type Uri = St::Uri;
}
pub struct SetUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUri<St> {}
impl<St: State> State for SetUri<St> {
type Author = St::Author;
type Cid = St::Cid;
type IndexedAt = St::IndexedAt;
type LikeCount = St::LikeCount;
type Record = St::Record;
type Uri = Set<members::uri>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct author(());
pub struct cid(());
pub struct indexed_at(());
pub struct like_count(());
pub struct record(());
pub struct uri(());
}
}
pub struct CommentViewBasicBuilder<
St: comment_view_basic_state::State,
S: BosStr = DefaultStr,
> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<ProfileViewBasic<S>>,
Option<Cid<S>>,
Option<Datetime>,
Option<i64>,
Option<Data<S>>,
Option<AtUri<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl CommentViewBasic<DefaultStr> {
pub fn new() -> CommentViewBasicBuilder<
comment_view_basic_state::Empty,
DefaultStr,
> {
CommentViewBasicBuilder::new()
}
}
impl<S: BosStr> CommentViewBasic<S> {
pub fn builder() -> CommentViewBasicBuilder<comment_view_basic_state::Empty, S> {
CommentViewBasicBuilder::builder()
}
}
impl CommentViewBasicBuilder<comment_view_basic_state::Empty, DefaultStr> {
pub fn new() -> Self {
CommentViewBasicBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> CommentViewBasicBuilder<comment_view_basic_state::Empty, S> {
pub fn builder() -> Self {
CommentViewBasicBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CommentViewBasicBuilder<St, S>
where
St: comment_view_basic_state::State,
St::Author: comment_view_basic_state::IsUnset,
{
pub fn author(
mut self,
value: impl Into<ProfileViewBasic<S>>,
) -> CommentViewBasicBuilder<comment_view_basic_state::SetAuthor<St>, S> {
self._fields.0 = Option::Some(value.into());
CommentViewBasicBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CommentViewBasicBuilder<St, S>
where
St: comment_view_basic_state::State,
St::Cid: comment_view_basic_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<S>>,
) -> CommentViewBasicBuilder<comment_view_basic_state::SetCid<St>, S> {
self._fields.1 = Option::Some(value.into());
CommentViewBasicBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CommentViewBasicBuilder<St, S>
where
St: comment_view_basic_state::State,
St::IndexedAt: comment_view_basic_state::IsUnset,
{
pub fn indexed_at(
mut self,
value: impl Into<Datetime>,
) -> CommentViewBasicBuilder<comment_view_basic_state::SetIndexedAt<St>, S> {
self._fields.2 = Option::Some(value.into());
CommentViewBasicBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CommentViewBasicBuilder<St, S>
where
St: comment_view_basic_state::State,
St::LikeCount: comment_view_basic_state::IsUnset,
{
pub fn like_count(
mut self,
value: impl Into<i64>,
) -> CommentViewBasicBuilder<comment_view_basic_state::SetLikeCount<St>, S> {
self._fields.3 = Option::Some(value.into());
CommentViewBasicBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CommentViewBasicBuilder<St, S>
where
St: comment_view_basic_state::State,
St::Record: comment_view_basic_state::IsUnset,
{
pub fn record(
mut self,
value: impl Into<Data<S>>,
) -> CommentViewBasicBuilder<comment_view_basic_state::SetRecord<St>, S> {
self._fields.4 = Option::Some(value.into());
CommentViewBasicBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CommentViewBasicBuilder<St, S>
where
St: comment_view_basic_state::State,
St::Uri: comment_view_basic_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<S>>,
) -> CommentViewBasicBuilder<comment_view_basic_state::SetUri<St>, S> {
self._fields.5 = Option::Some(value.into());
CommentViewBasicBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> CommentViewBasicBuilder<St, S>
where
St: comment_view_basic_state::State,
St::Author: comment_view_basic_state::IsSet,
St::Cid: comment_view_basic_state::IsSet,
St::IndexedAt: comment_view_basic_state::IsSet,
St::LikeCount: comment_view_basic_state::IsSet,
St::Record: comment_view_basic_state::IsSet,
St::Uri: comment_view_basic_state::IsSet,
{
pub fn build(self) -> CommentViewBasic<S> {
CommentViewBasic {
author: self._fields.0.unwrap(),
cid: self._fields.1.unwrap(),
indexed_at: self._fields.2.unwrap(),
like_count: self._fields.3.unwrap(),
record: self._fields.4.unwrap(),
uri: self._fields.5.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> CommentViewBasic<S> {
CommentViewBasic {
author: self._fields.0.unwrap(),
cid: self._fields.1.unwrap(),
indexed_at: self._fields.2.unwrap(),
like_count: self._fields.3.unwrap(),
record: self._fields.4.unwrap(),
uri: self._fields.5.unwrap(),
extra_data: Some(extra_data),
}
}
}