#[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::value::Data;
use jacquard_derive::IntoStatic;
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
use crate::at_inlay::Response;
use crate::org_atsui::clip;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct AspectRatio<S: BosStr = DefaultStr> {
pub height: i64,
pub width: i64,
#[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 Clip<S: BosStr = DefaultStr> {
pub children: Data<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub max: Option<clip::AspectRatio<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub min: Option<clip::AspectRatio<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 ClipOutput<S: BosStr = DefaultStr> {
#[serde(flatten)]
pub value: Response<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> LexiconSchema for AspectRatio<S> {
fn nsid() -> &'static str {
"org.atsui.Clip"
}
fn def_name() -> &'static str {
"aspectRatio"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_org_atsui_Clip()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.height;
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("height"),
min: 1i64,
actual: *value,
});
}
}
{
let value = &self.width;
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("width"),
min: 1i64,
actual: *value,
});
}
}
Ok(())
}
}
pub struct ClipResponse;
impl jacquard_common::xrpc::XrpcResp for ClipResponse {
const NSID: &'static str = "org.atsui.Clip";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ClipOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for Clip<S> {
const NSID: &'static str = "org.atsui.Clip";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Response = ClipResponse;
}
pub struct ClipRequest;
impl jacquard_common::xrpc::XrpcEndpoint for ClipRequest {
const PATH: &'static str = "/xrpc/org.atsui.Clip";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Request<S: BosStr> = Clip<S>;
type Response = ClipResponse;
}
pub mod aspect_ratio_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Width;
type Height;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Width = Unset;
type Height = Unset;
}
pub struct SetWidth<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetWidth<St> {}
impl<St: State> State for SetWidth<St> {
type Width = Set<members::width>;
type Height = St::Height;
}
pub struct SetHeight<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetHeight<St> {}
impl<St: State> State for SetHeight<St> {
type Width = St::Width;
type Height = Set<members::height>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct width(());
pub struct height(());
}
}
pub struct AspectRatioBuilder<S: BosStr, St: aspect_ratio_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<i64>, Option<i64>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> AspectRatio<S> {
pub fn new() -> AspectRatioBuilder<S, aspect_ratio_state::Empty> {
AspectRatioBuilder::new()
}
}
impl<S: BosStr> AspectRatioBuilder<S, aspect_ratio_state::Empty> {
pub fn new() -> Self {
AspectRatioBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> AspectRatioBuilder<S, St>
where
St: aspect_ratio_state::State,
St::Height: aspect_ratio_state::IsUnset,
{
pub fn height(
mut self,
value: impl Into<i64>,
) -> AspectRatioBuilder<S, aspect_ratio_state::SetHeight<St>> {
self._fields.0 = Option::Some(value.into());
AspectRatioBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> AspectRatioBuilder<S, St>
where
St: aspect_ratio_state::State,
St::Width: aspect_ratio_state::IsUnset,
{
pub fn width(
mut self,
value: impl Into<i64>,
) -> AspectRatioBuilder<S, aspect_ratio_state::SetWidth<St>> {
self._fields.1 = Option::Some(value.into());
AspectRatioBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> AspectRatioBuilder<S, St>
where
St: aspect_ratio_state::State,
St::Width: aspect_ratio_state::IsSet,
St::Height: aspect_ratio_state::IsSet,
{
pub fn build(self) -> AspectRatio<S> {
AspectRatio {
height: self._fields.0.unwrap(),
width: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> AspectRatio<S> {
AspectRatio {
height: self._fields.0.unwrap(),
width: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_org_atsui_Clip() -> LexiconDoc<'static> {
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("org.atsui.Clip"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("aspectRatio"),
LexUserType::Object(LexObject {
required: Some(vec![
SmolStr::new_static("width"),
SmolStr::new_static("height"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("height"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("width"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::XrpcProcedure(LexXrpcProcedure {
input: Some(LexXrpcBody {
encoding: CowStr::new_static("application/json"),
schema: Some(LexXrpcBodySchema::Object(LexObject {
required: Some(vec![SmolStr::new_static("children")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("children"),
LexObjectProperty::Unknown(LexUnknown {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("max"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#aspectRatio"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("min"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#aspectRatio"),
..Default::default()
}),
);
map
},
..Default::default()
})),
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod clip_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Children;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Children = Unset;
}
pub struct SetChildren<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetChildren<St> {}
impl<St: State> State for SetChildren<St> {
type Children = Set<members::children>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct children(());
}
}
pub struct ClipBuilder<S: BosStr, St: clip_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Data<S>>,
Option<clip::AspectRatio<S>>,
Option<clip::AspectRatio<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Clip<S> {
pub fn new() -> ClipBuilder<S, clip_state::Empty> {
ClipBuilder::new()
}
}
impl<S: BosStr> ClipBuilder<S, clip_state::Empty> {
pub fn new() -> Self {
ClipBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ClipBuilder<S, St>
where
St: clip_state::State,
St::Children: clip_state::IsUnset,
{
pub fn children(
mut self,
value: impl Into<Data<S>>,
) -> ClipBuilder<S, clip_state::SetChildren<St>> {
self._fields.0 = Option::Some(value.into());
ClipBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: clip_state::State> ClipBuilder<S, St> {
pub fn max(mut self, value: impl Into<Option<clip::AspectRatio<S>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_max(mut self, value: Option<clip::AspectRatio<S>>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St: clip_state::State> ClipBuilder<S, St> {
pub fn min(mut self, value: impl Into<Option<clip::AspectRatio<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_min(mut self, value: Option<clip::AspectRatio<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St> ClipBuilder<S, St>
where
St: clip_state::State,
St::Children: clip_state::IsSet,
{
pub fn build(self) -> Clip<S> {
Clip {
children: self._fields.0.unwrap(),
max: self._fields.1,
min: self._fields.2,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Clip<S> {
Clip {
children: self._fields.0.unwrap(),
max: self._fields.1,
min: self._fields.2,
extra_data: Some(extra_data),
}
}
}