#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, 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::blob::BlobRef;
use jacquard_common::types::string::UriValue;
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, 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::AspectRatio;
use crate::sh_weaver::embed::PercentSize;
use crate::sh_weaver::embed::PixelSize;
use crate::sh_weaver::embed::images;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct Image<S: BosStr = DefaultStr> {
pub alt: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub blurhash: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub dimensions: Option<ImageDimensions<S>>,
pub image: BlobRef<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub name: Option<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum ImageDimensions<S: BosStr = DefaultStr> {
#[serde(rename = "app.bsky.embed.defs#aspectRatio")]
AspectRatio(Box<AspectRatio<S>>),
#[serde(rename = "sh.weaver.embed.defs#percentSize")]
PercentSize(Box<PercentSize<S>>),
#[serde(rename = "sh.weaver.embed.defs#pixelSize")]
PixelSize(Box<PixelSize<S>>),
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct Images<S: BosStr = DefaultStr> {
pub images: Vec<images::Image<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 View<S: BosStr = DefaultStr> {
pub images: Vec<images::ViewImage<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 ViewImage<S: BosStr = DefaultStr> {
pub alt: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub dimensions: Option<ViewImageDimensions<S>>,
pub fullsize: UriValue<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub name: Option<S>,
pub thumb: UriValue<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum ViewImageDimensions<S: BosStr = DefaultStr> {
#[serde(rename = "app.bsky.embed.defs#aspectRatio")]
AspectRatio(Box<AspectRatio<S>>),
#[serde(rename = "sh.weaver.embed.defs#percentSize")]
PercentSize(Box<PercentSize<S>>),
#[serde(rename = "sh.weaver.embed.defs#pixelSize")]
PixelSize(Box<PixelSize<S>>),
}
impl<S: BosStr> LexiconSchema for Image<S> {
fn nsid() -> &'static str {
"sh.weaver.embed.images"
}
fn def_name() -> &'static str {
"image"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_sh_weaver_embed_images()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.blurhash {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 32usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("blurhash"),
max: 32usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.image;
{
let size = value.blob().size;
if size > 3000000usize {
return Err(ConstraintError::BlobTooLarge {
path: ValidationPath::from_field("image"),
max: 3000000usize,
actual: size,
});
}
}
}
{
let value = &self.image;
{
let mime = value.blob().mime_type.as_str();
let accepted: &[&str] = &["image/*"];
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("image"),
accepted: vec!["image/*".to_string()],
actual: mime.to_string(),
});
}
}
}
if let Some(ref value) = self.name {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 128usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("name"),
max: 128usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
impl<S: BosStr> LexiconSchema for Images<S> {
fn nsid() -> &'static str {
"sh.weaver.embed.images"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_sh_weaver_embed_images()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.images;
#[allow(unused_comparisons)]
if value.len() > 48usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("images"),
max: 48usize,
actual: value.len(),
});
}
}
Ok(())
}
}
impl<S: BosStr> LexiconSchema for View<S> {
fn nsid() -> &'static str {
"sh.weaver.embed.images"
}
fn def_name() -> &'static str {
"view"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_sh_weaver_embed_images()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.images;
#[allow(unused_comparisons)]
if value.len() > 48usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("images"),
max: 48usize,
actual: value.len(),
});
}
}
Ok(())
}
}
impl<S: BosStr> LexiconSchema for ViewImage<S> {
fn nsid() -> &'static str {
"sh.weaver.embed.images"
}
fn def_name() -> &'static str {
"viewImage"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_sh_weaver_embed_images()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.name {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 128usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("name"),
max: 128usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
pub mod image_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 Image;
type Alt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Image = Unset;
type Alt = Unset;
}
pub struct SetImage<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetImage<St> {}
impl<St: State> State for SetImage<St> {
type Image = Set<members::image>;
type Alt = St::Alt;
}
pub struct SetAlt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAlt<St> {}
impl<St: State> State for SetAlt<St> {
type Image = St::Image;
type Alt = Set<members::alt>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct image(());
pub struct alt(());
}
}
pub struct ImageBuilder<S: BosStr, St: image_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<S>,
Option<S>,
Option<ImageDimensions<S>>,
Option<BlobRef<S>>,
Option<S>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Image<S> {
pub fn new() -> ImageBuilder<S, image_state::Empty> {
ImageBuilder::new()
}
}
impl<S: BosStr> ImageBuilder<S, image_state::Empty> {
pub fn new() -> Self {
ImageBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ImageBuilder<S, St>
where
St: image_state::State,
St::Alt: image_state::IsUnset,
{
pub fn alt(
mut self,
value: impl Into<S>,
) -> ImageBuilder<S, image_state::SetAlt<St>> {
self._fields.0 = Option::Some(value.into());
ImageBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: image_state::State> ImageBuilder<S, St> {
pub fn blurhash(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_blurhash(mut self, value: Option<S>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St: image_state::State> ImageBuilder<S, St> {
pub fn dimensions(mut self, value: impl Into<Option<ImageDimensions<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_dimensions(mut self, value: Option<ImageDimensions<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St> ImageBuilder<S, St>
where
St: image_state::State,
St::Image: image_state::IsUnset,
{
pub fn image(
mut self,
value: impl Into<BlobRef<S>>,
) -> ImageBuilder<S, image_state::SetImage<St>> {
self._fields.3 = Option::Some(value.into());
ImageBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: image_state::State> ImageBuilder<S, St> {
pub fn name(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_name(mut self, value: Option<S>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St> ImageBuilder<S, St>
where
St: image_state::State,
St::Image: image_state::IsSet,
St::Alt: image_state::IsSet,
{
pub fn build(self) -> Image<S> {
Image {
alt: self._fields.0.unwrap(),
blurhash: self._fields.1,
dimensions: self._fields.2,
image: self._fields.3.unwrap(),
name: self._fields.4,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Image<S> {
Image {
alt: self._fields.0.unwrap(),
blurhash: self._fields.1,
dimensions: self._fields.2,
image: self._fields.3.unwrap(),
name: self._fields.4,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_sh_weaver_embed_images() -> 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("sh.weaver.embed.images"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("image"),
LexUserType::Object(LexObject {
required: Some(
vec![SmolStr::new_static("image"), SmolStr::new_static("alt")],
),
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 image"),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("blurhash"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Blurhash string for the image, used for low-resolution placeholders. This must be a valid Blurhash string.",
),
),
max_length: Some(32usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("dimensions"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![
CowStr::new_static("app.bsky.embed.defs#aspectRatio"),
CowStr::new_static("sh.weaver.embed.defs#percentSize"),
CowStr::new_static("sh.weaver.embed.defs#pixelSize")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("image"),
LexObjectProperty::Blob(LexBlob { ..Default::default() }),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
max_length: Some(128usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("images")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("images"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("#image"),
..Default::default()
}),
max_length: Some(48usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("view"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("images")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("images"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("#viewImage"),
..Default::default()
}),
max_length: Some(48usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("viewImage"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("thumb"),
SmolStr::new_static("fullsize"), SmolStr::new_static("alt")
],
),
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 image, for accessibility.",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("dimensions"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![
CowStr::new_static("app.bsky.embed.defs#aspectRatio"),
CowStr::new_static("sh.weaver.embed.defs#percentSize"),
CowStr::new_static("sh.weaver.embed.defs#pixelSize")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("fullsize"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Fully-qualified URL where a large version of the image can be fetched. May or may not be the exact original blob. For example, CDN location provided by the App View.",
),
),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
max_length: Some(128usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("thumb"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Fully-qualified URL where a thumbnail of the image can be fetched. For example, CDN location provided by the App View.",
),
),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod images_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 Images;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Images = Unset;
}
pub struct SetImages<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetImages<St> {}
impl<St: State> State for SetImages<St> {
type Images = Set<members::images>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct images(());
}
}
pub struct ImagesBuilder<S: BosStr, St: images_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Vec<images::Image<S>>>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Images<S> {
pub fn new() -> ImagesBuilder<S, images_state::Empty> {
ImagesBuilder::new()
}
}
impl<S: BosStr> ImagesBuilder<S, images_state::Empty> {
pub fn new() -> Self {
ImagesBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ImagesBuilder<S, St>
where
St: images_state::State,
St::Images: images_state::IsUnset,
{
pub fn images(
mut self,
value: impl Into<Vec<images::Image<S>>>,
) -> ImagesBuilder<S, images_state::SetImages<St>> {
self._fields.0 = Option::Some(value.into());
ImagesBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ImagesBuilder<S, St>
where
St: images_state::State,
St::Images: images_state::IsSet,
{
pub fn build(self) -> Images<S> {
Images {
images: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Images<S> {
Images {
images: self._fields.0.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 {}
}
pub trait State: sealed::Sealed {
type Images;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Images = Unset;
}
pub struct SetImages<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetImages<St> {}
impl<St: State> State for SetImages<St> {
type Images = Set<members::images>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct images(());
}
}
pub struct ViewBuilder<S: BosStr, St: view_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Vec<images::ViewImage<S>>>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> View<S> {
pub fn new() -> ViewBuilder<S, view_state::Empty> {
ViewBuilder::new()
}
}
impl<S: BosStr> ViewBuilder<S, view_state::Empty> {
pub fn new() -> Self {
ViewBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ViewBuilder<S, St>
where
St: view_state::State,
St::Images: view_state::IsUnset,
{
pub fn images(
mut self,
value: impl Into<Vec<images::ViewImage<S>>>,
) -> ViewBuilder<S, view_state::SetImages<St>> {
self._fields.0 = Option::Some(value.into());
ViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ViewBuilder<S, St>
where
St: view_state::State,
St::Images: view_state::IsSet,
{
pub fn build(self) -> View<S> {
View {
images: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> View<S> {
View {
images: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}
pub mod view_image_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 Fullsize;
type Thumb;
type Alt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Fullsize = Unset;
type Thumb = Unset;
type Alt = Unset;
}
pub struct SetFullsize<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetFullsize<St> {}
impl<St: State> State for SetFullsize<St> {
type Fullsize = Set<members::fullsize>;
type Thumb = St::Thumb;
type Alt = St::Alt;
}
pub struct SetThumb<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetThumb<St> {}
impl<St: State> State for SetThumb<St> {
type Fullsize = St::Fullsize;
type Thumb = Set<members::thumb>;
type Alt = St::Alt;
}
pub struct SetAlt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAlt<St> {}
impl<St: State> State for SetAlt<St> {
type Fullsize = St::Fullsize;
type Thumb = St::Thumb;
type Alt = Set<members::alt>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct fullsize(());
pub struct thumb(());
pub struct alt(());
}
}
pub struct ViewImageBuilder<S: BosStr, St: view_image_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<S>,
Option<ViewImageDimensions<S>>,
Option<UriValue<S>>,
Option<S>,
Option<UriValue<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> ViewImage<S> {
pub fn new() -> ViewImageBuilder<S, view_image_state::Empty> {
ViewImageBuilder::new()
}
}
impl<S: BosStr> ViewImageBuilder<S, view_image_state::Empty> {
pub fn new() -> Self {
ViewImageBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ViewImageBuilder<S, St>
where
St: view_image_state::State,
St::Alt: view_image_state::IsUnset,
{
pub fn alt(
mut self,
value: impl Into<S>,
) -> ViewImageBuilder<S, view_image_state::SetAlt<St>> {
self._fields.0 = Option::Some(value.into());
ViewImageBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: view_image_state::State> ViewImageBuilder<S, St> {
pub fn dimensions(
mut self,
value: impl Into<Option<ViewImageDimensions<S>>>,
) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_dimensions(mut self, value: Option<ViewImageDimensions<S>>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St> ViewImageBuilder<S, St>
where
St: view_image_state::State,
St::Fullsize: view_image_state::IsUnset,
{
pub fn fullsize(
mut self,
value: impl Into<UriValue<S>>,
) -> ViewImageBuilder<S, view_image_state::SetFullsize<St>> {
self._fields.2 = Option::Some(value.into());
ViewImageBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: view_image_state::State> ViewImageBuilder<S, St> {
pub fn name(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_name(mut self, value: Option<S>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St> ViewImageBuilder<S, St>
where
St: view_image_state::State,
St::Thumb: view_image_state::IsUnset,
{
pub fn thumb(
mut self,
value: impl Into<UriValue<S>>,
) -> ViewImageBuilder<S, view_image_state::SetThumb<St>> {
self._fields.4 = Option::Some(value.into());
ViewImageBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ViewImageBuilder<S, St>
where
St: view_image_state::State,
St::Fullsize: view_image_state::IsSet,
St::Thumb: view_image_state::IsSet,
St::Alt: view_image_state::IsSet,
{
pub fn build(self) -> ViewImage<S> {
ViewImage {
alt: self._fields.0.unwrap(),
dimensions: self._fields.1,
fullsize: self._fields.2.unwrap(),
name: self._fields.3,
thumb: self._fields.4.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> ViewImage<S> {
ViewImage {
alt: self._fields.0.unwrap(),
dimensions: self._fields.1,
fullsize: self._fields.2.unwrap(),
name: self._fields.3,
thumb: self._fields.4.unwrap(),
extra_data: Some(extra_data),
}
}
}