// @generated by jacquard-lexicon. DO NOT EDIT. // // Lexicon: app.bsky.embed.video // // This file was automatically generated from Lexicon schemas. // Any manual changes will be overwritten on the next regeneration. #[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::blob::BlobRef; use jacquard_common::types::string::{Cid, Language, UriValue}; 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::embed::AspectRatio; use crate::app_bsky::embed::video; #[lexicon] #[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)] #[serde(rename_all = "camelCase")] pub struct Caption<'a> { #[serde(borrow)] pub file: BlobRef<'a>, pub lang: Language, } #[lexicon] #[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)] #[serde(rename_all = "camelCase")] pub struct Video<'a> { ///Alt text description of the video, for accessibility. #[serde(skip_serializing_if = "Option::is_none")] #[serde(borrow)] pub alt: Option>, #[serde(skip_serializing_if = "Option::is_none")] #[serde(borrow)] pub aspect_ratio: Option>, #[serde(skip_serializing_if = "Option::is_none")] #[serde(borrow)] pub captions: Option>>, ///A hint to the client about how to present the video. #[serde(skip_serializing_if = "Option::is_none")] #[serde(borrow)] pub presentation: Option>, ///The mp4 video file. May be up to 100mb, formerly limited to 50mb. #[serde(borrow)] pub video: BlobRef<'a>, } /// A hint to the client about how to present the video. #[derive(Debug, Clone, PartialEq, Eq, Hash)] pub enum VideoPresentation<'a> { Default, Gif, Other(CowStr<'a>), } impl<'a> VideoPresentation<'a> { pub fn as_str(&self) -> &str { match self { Self::Default => "default", Self::Gif => "gif", Self::Other(s) => s.as_ref(), } } } impl<'a> From<&'a str> for VideoPresentation<'a> { fn from(s: &'a str) -> Self { match s { "default" => Self::Default, "gif" => Self::Gif, _ => Self::Other(CowStr::from(s)), } } } impl<'a> From for VideoPresentation<'a> { fn from(s: String) -> Self { match s.as_str() { "default" => Self::Default, "gif" => Self::Gif, _ => Self::Other(CowStr::from(s)), } } } impl<'a> core::fmt::Display for VideoPresentation<'a> { fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { write!(f, "{}", self.as_str()) } } impl<'a> AsRef for VideoPresentation<'a> { fn as_ref(&self) -> &str { self.as_str() } } impl<'a> serde::Serialize for VideoPresentation<'a> { fn serialize(&self, serializer: S) -> Result where S: serde::Serializer, { serializer.serialize_str(self.as_str()) } } impl<'de, 'a> serde::Deserialize<'de> for VideoPresentation<'a> where 'de: 'a, { fn deserialize(deserializer: D) -> Result where D: serde::Deserializer<'de>, { let s = <&'de str>::deserialize(deserializer)?; Ok(Self::from(s)) } } impl<'a> Default for VideoPresentation<'a> { fn default() -> Self { Self::Other(Default::default()) } } impl jacquard_common::IntoStatic for VideoPresentation<'_> { type Output = VideoPresentation<'static>; fn into_static(self) -> Self::Output { match self { VideoPresentation::Default => VideoPresentation::Default, VideoPresentation::Gif => VideoPresentation::Gif, VideoPresentation::Other(v) => VideoPresentation::Other(v.into_static()), } } } #[lexicon] #[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)] #[serde(rename_all = "camelCase")] pub struct View<'a> { #[serde(skip_serializing_if = "Option::is_none")] #[serde(borrow)] pub alt: Option>, #[serde(skip_serializing_if = "Option::is_none")] #[serde(borrow)] pub aspect_ratio: Option>, #[serde(borrow)] pub cid: Cid<'a>, #[serde(borrow)] pub playlist: UriValue<'a>, ///A hint to the client about how to present the video. #[serde(skip_serializing_if = "Option::is_none")] #[serde(borrow)] pub presentation: Option>, #[serde(skip_serializing_if = "Option::is_none")] #[serde(borrow)] pub thumbnail: Option>, } /// A hint to the client about how to present the video. #[derive(Debug, Clone, PartialEq, Eq, Hash)] pub enum ViewPresentation<'a> { Default, Gif, Other(CowStr<'a>), } impl<'a> ViewPresentation<'a> { pub fn as_str(&self) -> &str { match self { Self::Default => "default", Self::Gif => "gif", Self::Other(s) => s.as_ref(), } } } impl<'a> From<&'a str> for ViewPresentation<'a> { fn from(s: &'a str) -> Self { match s { "default" => Self::Default, "gif" => Self::Gif, _ => Self::Other(CowStr::from(s)), } } } impl<'a> From for ViewPresentation<'a> { fn from(s: String) -> Self { match s.as_str() { "default" => Self::Default, "gif" => Self::Gif, _ => Self::Other(CowStr::from(s)), } } } impl<'a> core::fmt::Display for ViewPresentation<'a> { fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result { write!(f, "{}", self.as_str()) } } impl<'a> AsRef for ViewPresentation<'a> { fn as_ref(&self) -> &str { self.as_str() } } impl<'a> serde::Serialize for ViewPresentation<'a> { fn serialize(&self, serializer: S) -> Result where S: serde::Serializer, { serializer.serialize_str(self.as_str()) } } impl<'de, 'a> serde::Deserialize<'de> for ViewPresentation<'a> where 'de: 'a, { fn deserialize(deserializer: D) -> Result where D: serde::Deserializer<'de>, { let s = <&'de str>::deserialize(deserializer)?; Ok(Self::from(s)) } } impl<'a> Default for ViewPresentation<'a> { fn default() -> Self { Self::Other(Default::default()) } } impl jacquard_common::IntoStatic for ViewPresentation<'_> { type Output = ViewPresentation<'static>; fn into_static(self) -> Self::Output { match self { ViewPresentation::Default => ViewPresentation::Default, ViewPresentation::Gif => ViewPresentation::Gif, ViewPresentation::Other(v) => ViewPresentation::Other(v.into_static()), } } } impl<'a> LexiconSchema for Caption<'a> { fn nsid() -> &'static str { "app.bsky.embed.video" } fn def_name() -> &'static str { "caption" } fn lexicon_doc() -> LexiconDoc<'static> { lexicon_doc_app_bsky_embed_video() } fn validate(&self) -> Result<(), ConstraintError> { { let value = &self.file; { let size = value.blob().size; if size > 20000usize { return Err(ConstraintError::BlobTooLarge { path: ValidationPath::from_field("file"), max: 20000usize, actual: size, }); } } } { let value = &self.file; { let mime = value.blob().mime_type.as_str(); let accepted: &[&str] = &["text/vtt"]; let matched = accepted .iter() .any(|pattern| { if *pattern == "*/*" { true } else if pattern.ends_with("/*") { let prefix = &pattern[..pattern.len() - 2]; mime.starts_with(prefix) && mime.as_bytes().get(prefix.len()) == Some(&b'/') } else { mime == *pattern } }); if !matched { return Err(ConstraintError::BlobMimeTypeNotAccepted { path: ValidationPath::from_field("file"), accepted: vec!["text/vtt".to_string()], actual: mime.to_string(), }); } } } Ok(()) } } impl<'a> LexiconSchema for Video<'a> { fn nsid() -> &'static str { "app.bsky.embed.video" } fn def_name() -> &'static str { "main" } fn lexicon_doc() -> LexiconDoc<'static> { lexicon_doc_app_bsky_embed_video() } fn validate(&self) -> Result<(), ConstraintError> { if let Some(ref value) = self.alt { #[allow(unused_comparisons)] if ::len(value.as_ref()) > 10000usize { return Err(ConstraintError::MaxLength { path: ValidationPath::from_field("alt"), max: 10000usize, actual: ::len(value.as_ref()), }); } } if let Some(ref value) = self.alt { { let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count(); if count > 1000usize { return Err(ConstraintError::MaxGraphemes { path: ValidationPath::from_field("alt"), max: 1000usize, actual: count, }); } } } if let Some(ref value) = self.captions { #[allow(unused_comparisons)] if value.len() > 20usize { return Err(ConstraintError::MaxLength { path: ValidationPath::from_field("captions"), max: 20usize, actual: value.len(), }); } } { let value = &self.video; { let size = value.blob().size; if size > 100000000usize { return Err(ConstraintError::BlobTooLarge { path: ValidationPath::from_field("video"), max: 100000000usize, actual: size, }); } } } { let value = &self.video; { let mime = value.blob().mime_type.as_str(); let accepted: &[&str] = &["video/mp4"]; let matched = accepted .iter() .any(|pattern| { if *pattern == "*/*" { true } else if pattern.ends_with("/*") { let prefix = &pattern[..pattern.len() - 2]; mime.starts_with(prefix) && mime.as_bytes().get(prefix.len()) == Some(&b'/') } else { mime == *pattern } }); if !matched { return Err(ConstraintError::BlobMimeTypeNotAccepted { path: ValidationPath::from_field("video"), accepted: vec!["video/mp4".to_string()], actual: mime.to_string(), }); } } } Ok(()) } } impl<'a> LexiconSchema for View<'a> { fn nsid() -> &'static str { "app.bsky.embed.video" } fn def_name() -> &'static str { "view" } fn lexicon_doc() -> LexiconDoc<'static> { lexicon_doc_app_bsky_embed_video() } fn validate(&self) -> Result<(), ConstraintError> { if let Some(ref value) = self.alt { #[allow(unused_comparisons)] if ::len(value.as_ref()) > 10000usize { return Err(ConstraintError::MaxLength { path: ValidationPath::from_field("alt"), max: 10000usize, actual: ::len(value.as_ref()), }); } } if let Some(ref value) = self.alt { { let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count(); if count > 1000usize { return Err(ConstraintError::MaxGraphemes { path: ValidationPath::from_field("alt"), max: 1000usize, actual: count, }); } } } Ok(()) } } pub mod caption_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 File; type Lang; } /// Empty state - all required fields are unset pub struct Empty(()); impl sealed::Sealed for Empty {} impl State for Empty { type File = Unset; type Lang = Unset; } ///State transition - sets the `file` field to Set pub struct SetFile(PhantomData S>); impl sealed::Sealed for SetFile {} impl State for SetFile { type File = Set; type Lang = S::Lang; } ///State transition - sets the `lang` field to Set pub struct SetLang(PhantomData S>); impl sealed::Sealed for SetLang {} impl State for SetLang { type File = S::File; type Lang = Set; } /// Marker types for field names #[allow(non_camel_case_types)] pub mod members { ///Marker type for the `file` field pub struct file(()); ///Marker type for the `lang` field pub struct lang(()); } } /// Builder for constructing an instance of this type pub struct CaptionBuilder<'a, S: caption_state::State> { _state: PhantomData S>, _fields: (Option>, Option), _lifetime: PhantomData<&'a ()>, } impl<'a> Caption<'a> { /// Create a new builder for this type pub fn new() -> CaptionBuilder<'a, caption_state::Empty> { CaptionBuilder::new() } } impl<'a> CaptionBuilder<'a, caption_state::Empty> { /// Create a new builder with all fields unset pub fn new() -> Self { CaptionBuilder { _state: PhantomData, _fields: (None, None), _lifetime: PhantomData, } } } impl<'a, S> CaptionBuilder<'a, S> where S: caption_state::State, S::File: caption_state::IsUnset, { /// Set the `file` field (required) pub fn file( mut self, value: impl Into>, ) -> CaptionBuilder<'a, caption_state::SetFile> { self._fields.0 = Option::Some(value.into()); CaptionBuilder { _state: PhantomData, _fields: self._fields, _lifetime: PhantomData, } } } impl<'a, S> CaptionBuilder<'a, S> where S: caption_state::State, S::Lang: caption_state::IsUnset, { /// Set the `lang` field (required) pub fn lang( mut self, value: impl Into, ) -> CaptionBuilder<'a, caption_state::SetLang> { self._fields.1 = Option::Some(value.into()); CaptionBuilder { _state: PhantomData, _fields: self._fields, _lifetime: PhantomData, } } } impl<'a, S> CaptionBuilder<'a, S> where S: caption_state::State, S::File: caption_state::IsSet, S::Lang: caption_state::IsSet, { /// Build the final struct pub fn build(self) -> Caption<'a> { Caption { file: self._fields.0.unwrap(), lang: self._fields.1.unwrap(), extra_data: Default::default(), } } /// Build the final struct with custom extra_data pub fn build_with_data( self, extra_data: BTreeMap< jacquard_common::deps::smol_str::SmolStr, jacquard_common::types::value::Data<'a>, >, ) -> Caption<'a> { Caption { file: self._fields.0.unwrap(), lang: self._fields.1.unwrap(), extra_data: Some(extra_data), } } } fn lexicon_doc_app_bsky_embed_video() -> 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.video"), defs: { let mut map = BTreeMap::new(); map.insert( SmolStr::new_static("caption"), LexUserType::Object(LexObject { required: Some( vec![SmolStr::new_static("lang"), SmolStr::new_static("file")], ), properties: { #[allow(unused_mut)] let mut map = BTreeMap::new(); map.insert( SmolStr::new_static("file"), LexObjectProperty::Blob(LexBlob { ..Default::default() }), ); map.insert( SmolStr::new_static("lang"), LexObjectProperty::String(LexString { format: Some(LexStringFormat::Language), ..Default::default() }), ); map }, ..Default::default() }), ); map.insert( SmolStr::new_static("main"), LexUserType::Object(LexObject { required: Some(vec![SmolStr::new_static("video")]), properties: { #[allow(unused_mut)] let mut map = BTreeMap::new(); map.insert( SmolStr::new_static("alt"), LexObjectProperty::String(LexString { description: Some( CowStr::new_static( "Alt text description of the video, for accessibility.", ), ), max_length: Some(10000usize), max_graphemes: Some(1000usize), ..Default::default() }), ); map.insert( SmolStr::new_static("aspectRatio"), LexObjectProperty::Ref(LexRef { r#ref: CowStr::new_static( "app.bsky.embed.defs#aspectRatio", ), ..Default::default() }), ); map.insert( SmolStr::new_static("captions"), LexObjectProperty::Array(LexArray { items: LexArrayItem::Ref(LexRef { r#ref: CowStr::new_static("#caption"), ..Default::default() }), max_length: Some(20usize), ..Default::default() }), ); map.insert( SmolStr::new_static("presentation"), LexObjectProperty::String(LexString { description: Some( CowStr::new_static( "A hint to the client about how to present the video.", ), ), ..Default::default() }), ); map.insert( SmolStr::new_static("video"), LexObjectProperty::Blob(LexBlob { ..Default::default() }), ); map }, ..Default::default() }), ); map.insert( SmolStr::new_static("view"), LexUserType::Object(LexObject { required: Some( vec![SmolStr::new_static("cid"), SmolStr::new_static("playlist")], ), properties: { #[allow(unused_mut)] let mut map = BTreeMap::new(); map.insert( SmolStr::new_static("alt"), LexObjectProperty::String(LexString { max_length: Some(10000usize), max_graphemes: Some(1000usize), ..Default::default() }), ); map.insert( SmolStr::new_static("aspectRatio"), LexObjectProperty::Ref(LexRef { r#ref: CowStr::new_static( "app.bsky.embed.defs#aspectRatio", ), ..Default::default() }), ); map.insert( SmolStr::new_static("cid"), LexObjectProperty::String(LexString { format: Some(LexStringFormat::Cid), ..Default::default() }), ); map.insert( SmolStr::new_static("playlist"), LexObjectProperty::String(LexString { format: Some(LexStringFormat::Uri), ..Default::default() }), ); map.insert( SmolStr::new_static("presentation"), LexObjectProperty::String(LexString { description: Some( CowStr::new_static( "A hint to the client about how to present the video.", ), ), ..Default::default() }), ); map.insert( SmolStr::new_static("thumbnail"), LexObjectProperty::String(LexString { format: Some(LexStringFormat::Uri), ..Default::default() }), ); map }, ..Default::default() }), ); map }, ..Default::default() } } pub mod video_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 Video; } /// Empty state - all required fields are unset pub struct Empty(()); impl sealed::Sealed for Empty {} impl State for Empty { type Video = Unset; } ///State transition - sets the `video` field to Set pub struct SetVideo(PhantomData S>); impl sealed::Sealed for SetVideo {} impl State for SetVideo { type Video = Set; } /// Marker types for field names #[allow(non_camel_case_types)] pub mod members { ///Marker type for the `video` field pub struct video(()); } } /// Builder for constructing an instance of this type pub struct VideoBuilder<'a, S: video_state::State> { _state: PhantomData S>, _fields: ( Option>, Option>, Option>>, Option>, Option>, ), _lifetime: PhantomData<&'a ()>, } impl<'a> Video<'a> { /// Create a new builder for this type pub fn new() -> VideoBuilder<'a, video_state::Empty> { VideoBuilder::new() } } impl<'a> VideoBuilder<'a, video_state::Empty> { /// Create a new builder with all fields unset pub fn new() -> Self { VideoBuilder { _state: PhantomData, _fields: (None, None, None, None, None), _lifetime: PhantomData, } } } impl<'a, S: video_state::State> VideoBuilder<'a, S> { /// Set the `alt` field (optional) pub fn alt(mut self, value: impl Into>>) -> Self { self._fields.0 = value.into(); self } /// Set the `alt` field to an Option value (optional) pub fn maybe_alt(mut self, value: Option>) -> Self { self._fields.0 = value; self } } impl<'a, S: video_state::State> VideoBuilder<'a, S> { /// Set the `aspectRatio` field (optional) pub fn aspect_ratio(mut self, value: impl Into>>) -> Self { self._fields.1 = value.into(); self } /// Set the `aspectRatio` field to an Option value (optional) pub fn maybe_aspect_ratio(mut self, value: Option>) -> Self { self._fields.1 = value; self } } impl<'a, S: video_state::State> VideoBuilder<'a, S> { /// Set the `captions` field (optional) pub fn captions( mut self, value: impl Into>>>, ) -> Self { self._fields.2 = value.into(); self } /// Set the `captions` field to an Option value (optional) pub fn maybe_captions(mut self, value: Option>>) -> Self { self._fields.2 = value; self } } impl<'a, S: video_state::State> VideoBuilder<'a, S> { /// Set the `presentation` field (optional) pub fn presentation( mut self, value: impl Into>>, ) -> Self { self._fields.3 = value.into(); self } /// Set the `presentation` field to an Option value (optional) pub fn maybe_presentation(mut self, value: Option>) -> Self { self._fields.3 = value; self } } impl<'a, S> VideoBuilder<'a, S> where S: video_state::State, S::Video: video_state::IsUnset, { /// Set the `video` field (required) pub fn video( mut self, value: impl Into>, ) -> VideoBuilder<'a, video_state::SetVideo> { self._fields.4 = Option::Some(value.into()); VideoBuilder { _state: PhantomData, _fields: self._fields, _lifetime: PhantomData, } } } impl<'a, S> VideoBuilder<'a, S> where S: video_state::State, S::Video: video_state::IsSet, { /// Build the final struct pub fn build(self) -> Video<'a> { Video { alt: self._fields.0, aspect_ratio: self._fields.1, captions: self._fields.2, presentation: self._fields.3, video: self._fields.4.unwrap(), extra_data: Default::default(), } } /// Build the final struct with custom extra_data pub fn build_with_data( self, extra_data: BTreeMap< jacquard_common::deps::smol_str::SmolStr, jacquard_common::types::value::Data<'a>, >, ) -> Video<'a> { Video { alt: self._fields.0, aspect_ratio: self._fields.1, captions: self._fields.2, presentation: self._fields.3, video: self._fields.4.unwrap(), extra_data: Some(extra_data), } } } pub mod view_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 Playlist; type Cid; } /// Empty state - all required fields are unset pub struct Empty(()); impl sealed::Sealed for Empty {} impl State for Empty { type Playlist = Unset; type Cid = Unset; } ///State transition - sets the `playlist` field to Set pub struct SetPlaylist(PhantomData S>); impl sealed::Sealed for SetPlaylist {} impl State for SetPlaylist { type Playlist = Set; type Cid = S::Cid; } ///State transition - sets the `cid` field to Set pub struct SetCid(PhantomData S>); impl sealed::Sealed for SetCid {} impl State for SetCid { type Playlist = S::Playlist; type Cid = Set; } /// Marker types for field names #[allow(non_camel_case_types)] pub mod members { ///Marker type for the `playlist` field pub struct playlist(()); ///Marker type for the `cid` field pub struct cid(()); } } /// Builder for constructing an instance of this type pub struct ViewBuilder<'a, S: view_state::State> { _state: PhantomData S>, _fields: ( Option>, Option>, Option>, Option>, Option>, Option>, ), _lifetime: PhantomData<&'a ()>, } impl<'a> View<'a> { /// Create a new builder for this type pub fn new() -> ViewBuilder<'a, view_state::Empty> { ViewBuilder::new() } } impl<'a> ViewBuilder<'a, view_state::Empty> { /// Create a new builder with all fields unset pub fn new() -> Self { ViewBuilder { _state: PhantomData, _fields: (None, None, None, None, None, None), _lifetime: PhantomData, } } } impl<'a, S: view_state::State> ViewBuilder<'a, S> { /// Set the `alt` field (optional) pub fn alt(mut self, value: impl Into>>) -> Self { self._fields.0 = value.into(); self } /// Set the `alt` field to an Option value (optional) pub fn maybe_alt(mut self, value: Option>) -> Self { self._fields.0 = value; self } } impl<'a, S: view_state::State> ViewBuilder<'a, S> { /// Set the `aspectRatio` field (optional) pub fn aspect_ratio(mut self, value: impl Into>>) -> Self { self._fields.1 = value.into(); self } /// Set the `aspectRatio` field to an Option value (optional) pub fn maybe_aspect_ratio(mut self, value: Option>) -> Self { self._fields.1 = value; self } } impl<'a, S> ViewBuilder<'a, S> where S: view_state::State, S::Cid: view_state::IsUnset, { /// Set the `cid` field (required) pub fn cid( mut self, value: impl Into>, ) -> ViewBuilder<'a, view_state::SetCid> { self._fields.2 = Option::Some(value.into()); ViewBuilder { _state: PhantomData, _fields: self._fields, _lifetime: PhantomData, } } } impl<'a, S> ViewBuilder<'a, S> where S: view_state::State, S::Playlist: view_state::IsUnset, { /// Set the `playlist` field (required) pub fn playlist( mut self, value: impl Into>, ) -> ViewBuilder<'a, view_state::SetPlaylist> { self._fields.3 = Option::Some(value.into()); ViewBuilder { _state: PhantomData, _fields: self._fields, _lifetime: PhantomData, } } } impl<'a, S: view_state::State> ViewBuilder<'a, S> { /// Set the `presentation` field (optional) pub fn presentation( mut self, value: impl Into>>, ) -> Self { self._fields.4 = value.into(); self } /// Set the `presentation` field to an Option value (optional) pub fn maybe_presentation(mut self, value: Option>) -> Self { self._fields.4 = value; self } } impl<'a, S: view_state::State> ViewBuilder<'a, S> { /// Set the `thumbnail` field (optional) pub fn thumbnail(mut self, value: impl Into>>) -> Self { self._fields.5 = value.into(); self } /// Set the `thumbnail` field to an Option value (optional) pub fn maybe_thumbnail(mut self, value: Option>) -> Self { self._fields.5 = value; self } } impl<'a, S> ViewBuilder<'a, S> where S: view_state::State, S::Playlist: view_state::IsSet, S::Cid: view_state::IsSet, { /// Build the final struct pub fn build(self) -> View<'a> { View { alt: self._fields.0, aspect_ratio: self._fields.1, cid: self._fields.2.unwrap(), playlist: self._fields.3.unwrap(), presentation: self._fields.4, thumbnail: self._fields.5, extra_data: Default::default(), } } /// Build the final struct with custom extra_data pub fn build_with_data( self, extra_data: BTreeMap< jacquard_common::deps::smol_str::SmolStr, jacquard_common::types::value::Data<'a>, >, ) -> View<'a> { View { alt: self._fields.0, aspect_ratio: self._fields.1, cid: self._fields.2.unwrap(), playlist: self._fields.3.unwrap(), presentation: self._fields.4, thumbnail: self._fields.5, extra_data: Some(extra_data), } } }