pub mod delete_account;
pub mod disable_account_invites;
pub mod disable_invite_codes;
pub mod enable_account_invites;
pub mod get_account_info;
pub mod get_account_infos;
pub mod get_invite_codes;
pub mod get_subject_status;
pub mod search_accounts;
pub mod send_email;
pub mod update_account_email;
pub mod update_account_handle;
pub mod update_account_password;
pub mod update_account_signing_key;
pub mod update_subject_status;
#[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::{Did, Handle, AtUri, Cid, Datetime};
use jacquard_common::types::value::Data;
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::com_atproto::server::InviteCode;
use crate::com_atproto::admin;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct AccountView<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
pub deactivated_at: Option<Datetime>,
#[serde(borrow)]
pub did: Did<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub email: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub email_confirmed_at: Option<Datetime>,
#[serde(borrow)]
pub handle: Handle<'a>,
pub indexed_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub invite_note: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub invited_by: Option<InviteCode<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub invites: Option<Vec<InviteCode<'a>>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub invites_disabled: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub related_records: Option<Vec<Data<'a>>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub threat_signatures: Option<Vec<admin::ThreatSignature<'a>>>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct RepoBlobRef<'a> {
#[serde(borrow)]
pub cid: Cid<'a>,
#[serde(borrow)]
pub did: Did<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub record_uri: Option<AtUri<'a>>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct RepoRef<'a> {
#[serde(borrow)]
pub did: Did<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct StatusAttr<'a> {
pub applied: bool,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub r#ref: Option<CowStr<'a>>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct ThreatSignature<'a> {
#[serde(borrow)]
pub property: CowStr<'a>,
#[serde(borrow)]
pub value: CowStr<'a>,
}
impl<'a> LexiconSchema for AccountView<'a> {
fn nsid() -> &'static str {
"com.atproto.admin.defs"
}
fn def_name() -> &'static str {
"accountView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_com_atproto_admin_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<'a> LexiconSchema for RepoBlobRef<'a> {
fn nsid() -> &'static str {
"com.atproto.admin.defs"
}
fn def_name() -> &'static str {
"repoBlobRef"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_com_atproto_admin_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<'a> LexiconSchema for RepoRef<'a> {
fn nsid() -> &'static str {
"com.atproto.admin.defs"
}
fn def_name() -> &'static str {
"repoRef"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_com_atproto_admin_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<'a> LexiconSchema for StatusAttr<'a> {
fn nsid() -> &'static str {
"com.atproto.admin.defs"
}
fn def_name() -> &'static str {
"statusAttr"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_com_atproto_admin_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<'a> LexiconSchema for ThreatSignature<'a> {
fn nsid() -> &'static str {
"com.atproto.admin.defs"
}
fn def_name() -> &'static str {
"threatSignature"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_com_atproto_admin_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod account_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 Handle;
type IndexedAt;
type Did;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Handle = Unset;
type IndexedAt = Unset;
type Did = Unset;
}
pub struct SetHandle<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetHandle<S> {}
impl<S: State> State for SetHandle<S> {
type Handle = Set<members::handle>;
type IndexedAt = S::IndexedAt;
type Did = S::Did;
}
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 Handle = S::Handle;
type IndexedAt = Set<members::indexed_at>;
type Did = S::Did;
}
pub struct SetDid<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetDid<S> {}
impl<S: State> State for SetDid<S> {
type Handle = S::Handle;
type IndexedAt = S::IndexedAt;
type Did = Set<members::did>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct handle(());
pub struct indexed_at(());
pub struct did(());
}
}
pub struct AccountViewBuilder<'a, S: account_view_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Datetime>,
Option<Did<'a>>,
Option<CowStr<'a>>,
Option<Datetime>,
Option<Handle<'a>>,
Option<Datetime>,
Option<CowStr<'a>>,
Option<InviteCode<'a>>,
Option<Vec<InviteCode<'a>>>,
Option<bool>,
Option<Vec<Data<'a>>>,
Option<Vec<admin::ThreatSignature<'a>>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> AccountView<'a> {
pub fn new() -> AccountViewBuilder<'a, account_view_state::Empty> {
AccountViewBuilder::new()
}
}
impl<'a> AccountViewBuilder<'a, account_view_state::Empty> {
pub fn new() -> Self {
AccountViewBuilder {
_state: PhantomData,
_fields: (
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
),
_lifetime: PhantomData,
}
}
}
impl<'a, S: account_view_state::State> AccountViewBuilder<'a, S> {
pub fn deactivated_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_deactivated_at(mut self, value: Option<Datetime>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> AccountViewBuilder<'a, S>
where
S: account_view_state::State,
S::Did: account_view_state::IsUnset,
{
pub fn did(
mut self,
value: impl Into<Did<'a>>,
) -> AccountViewBuilder<'a, account_view_state::SetDid<S>> {
self._fields.1 = Option::Some(value.into());
AccountViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: account_view_state::State> AccountViewBuilder<'a, S> {
pub fn email(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_email(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: account_view_state::State> AccountViewBuilder<'a, S> {
pub fn email_confirmed_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_email_confirmed_at(mut self, value: Option<Datetime>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S> AccountViewBuilder<'a, S>
where
S: account_view_state::State,
S::Handle: account_view_state::IsUnset,
{
pub fn handle(
mut self,
value: impl Into<Handle<'a>>,
) -> AccountViewBuilder<'a, account_view_state::SetHandle<S>> {
self._fields.4 = Option::Some(value.into());
AccountViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> AccountViewBuilder<'a, S>
where
S: account_view_state::State,
S::IndexedAt: account_view_state::IsUnset,
{
pub fn indexed_at(
mut self,
value: impl Into<Datetime>,
) -> AccountViewBuilder<'a, account_view_state::SetIndexedAt<S>> {
self._fields.5 = Option::Some(value.into());
AccountViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: account_view_state::State> AccountViewBuilder<'a, S> {
pub fn invite_note(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_invite_note(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.6 = value;
self
}
}
impl<'a, S: account_view_state::State> AccountViewBuilder<'a, S> {
pub fn invited_by(mut self, value: impl Into<Option<InviteCode<'a>>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_invited_by(mut self, value: Option<InviteCode<'a>>) -> Self {
self._fields.7 = value;
self
}
}
impl<'a, S: account_view_state::State> AccountViewBuilder<'a, S> {
pub fn invites(mut self, value: impl Into<Option<Vec<InviteCode<'a>>>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_invites(mut self, value: Option<Vec<InviteCode<'a>>>) -> Self {
self._fields.8 = value;
self
}
}
impl<'a, S: account_view_state::State> AccountViewBuilder<'a, S> {
pub fn invites_disabled(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.9 = value.into();
self
}
pub fn maybe_invites_disabled(mut self, value: Option<bool>) -> Self {
self._fields.9 = value;
self
}
}
impl<'a, S: account_view_state::State> AccountViewBuilder<'a, S> {
pub fn related_records(mut self, value: impl Into<Option<Vec<Data<'a>>>>) -> Self {
self._fields.10 = value.into();
self
}
pub fn maybe_related_records(mut self, value: Option<Vec<Data<'a>>>) -> Self {
self._fields.10 = value;
self
}
}
impl<'a, S: account_view_state::State> AccountViewBuilder<'a, S> {
pub fn threat_signatures(
mut self,
value: impl Into<Option<Vec<admin::ThreatSignature<'a>>>>,
) -> Self {
self._fields.11 = value.into();
self
}
pub fn maybe_threat_signatures(
mut self,
value: Option<Vec<admin::ThreatSignature<'a>>>,
) -> Self {
self._fields.11 = value;
self
}
}
impl<'a, S> AccountViewBuilder<'a, S>
where
S: account_view_state::State,
S::Handle: account_view_state::IsSet,
S::IndexedAt: account_view_state::IsSet,
S::Did: account_view_state::IsSet,
{
pub fn build(self) -> AccountView<'a> {
AccountView {
deactivated_at: self._fields.0,
did: self._fields.1.unwrap(),
email: self._fields.2,
email_confirmed_at: self._fields.3,
handle: self._fields.4.unwrap(),
indexed_at: self._fields.5.unwrap(),
invite_note: self._fields.6,
invited_by: self._fields.7,
invites: self._fields.8,
invites_disabled: self._fields.9,
related_records: self._fields.10,
threat_signatures: self._fields.11,
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<jacquard_common::deps::smol_str::SmolStr, Data<'a>>,
) -> AccountView<'a> {
AccountView {
deactivated_at: self._fields.0,
did: self._fields.1.unwrap(),
email: self._fields.2,
email_confirmed_at: self._fields.3,
handle: self._fields.4.unwrap(),
indexed_at: self._fields.5.unwrap(),
invite_note: self._fields.6,
invited_by: self._fields.7,
invites: self._fields.8,
invites_disabled: self._fields.9,
related_records: self._fields.10,
threat_signatures: self._fields.11,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_com_atproto_admin_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("com.atproto.admin.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("accountView"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("did"), SmolStr::new_static("handle"),
SmolStr::new_static("indexedAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("deactivatedAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("did"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("email"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("emailConfirmedAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("handle"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Handle),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("indexedAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("inviteNote"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("invitedBy"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"com.atproto.server.defs#inviteCode",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("invites"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static(
"com.atproto.server.defs#inviteCode",
),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("invitesDisabled"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("relatedRecords"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Unknown(LexUnknown {
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("threatSignatures"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("#threatSignature"),
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("repoBlobRef"),
LexUserType::Object(LexObject {
required: Some(
vec![SmolStr::new_static("did"), SmolStr::new_static("cid")],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Cid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("did"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("recordUri"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("repoRef"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("did")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("did"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("statusAttr"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("applied")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("applied"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("ref"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("threatSignature"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("property"), SmolStr::new_static("value")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("property"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("value"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod repo_blob_ref_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 Cid;
type Did;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Cid = Unset;
type Did = Unset;
}
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 Cid = Set<members::cid>;
type Did = S::Did;
}
pub struct SetDid<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetDid<S> {}
impl<S: State> State for SetDid<S> {
type Cid = S::Cid;
type Did = Set<members::did>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct cid(());
pub struct did(());
}
}
pub struct RepoBlobRefBuilder<'a, S: repo_blob_ref_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Cid<'a>>, Option<Did<'a>>, Option<AtUri<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> RepoBlobRef<'a> {
pub fn new() -> RepoBlobRefBuilder<'a, repo_blob_ref_state::Empty> {
RepoBlobRefBuilder::new()
}
}
impl<'a> RepoBlobRefBuilder<'a, repo_blob_ref_state::Empty> {
pub fn new() -> Self {
RepoBlobRefBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> RepoBlobRefBuilder<'a, S>
where
S: repo_blob_ref_state::State,
S::Cid: repo_blob_ref_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<'a>>,
) -> RepoBlobRefBuilder<'a, repo_blob_ref_state::SetCid<S>> {
self._fields.0 = Option::Some(value.into());
RepoBlobRefBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> RepoBlobRefBuilder<'a, S>
where
S: repo_blob_ref_state::State,
S::Did: repo_blob_ref_state::IsUnset,
{
pub fn did(
mut self,
value: impl Into<Did<'a>>,
) -> RepoBlobRefBuilder<'a, repo_blob_ref_state::SetDid<S>> {
self._fields.1 = Option::Some(value.into());
RepoBlobRefBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: repo_blob_ref_state::State> RepoBlobRefBuilder<'a, S> {
pub fn record_uri(mut self, value: impl Into<Option<AtUri<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_record_uri(mut self, value: Option<AtUri<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> RepoBlobRefBuilder<'a, S>
where
S: repo_blob_ref_state::State,
S::Cid: repo_blob_ref_state::IsSet,
S::Did: repo_blob_ref_state::IsSet,
{
pub fn build(self) -> RepoBlobRef<'a> {
RepoBlobRef {
cid: self._fields.0.unwrap(),
did: self._fields.1.unwrap(),
record_uri: self._fields.2,
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<jacquard_common::deps::smol_str::SmolStr, Data<'a>>,
) -> RepoBlobRef<'a> {
RepoBlobRef {
cid: self._fields.0.unwrap(),
did: self._fields.1.unwrap(),
record_uri: self._fields.2,
extra_data: Some(extra_data),
}
}
}
pub mod repo_ref_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 Did;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Did = Unset;
}
pub struct SetDid<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetDid<S> {}
impl<S: State> State for SetDid<S> {
type Did = Set<members::did>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct did(());
}
}
pub struct RepoRefBuilder<'a, S: repo_ref_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Did<'a>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> RepoRef<'a> {
pub fn new() -> RepoRefBuilder<'a, repo_ref_state::Empty> {
RepoRefBuilder::new()
}
}
impl<'a> RepoRefBuilder<'a, repo_ref_state::Empty> {
pub fn new() -> Self {
RepoRefBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S> RepoRefBuilder<'a, S>
where
S: repo_ref_state::State,
S::Did: repo_ref_state::IsUnset,
{
pub fn did(
mut self,
value: impl Into<Did<'a>>,
) -> RepoRefBuilder<'a, repo_ref_state::SetDid<S>> {
self._fields.0 = Option::Some(value.into());
RepoRefBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> RepoRefBuilder<'a, S>
where
S: repo_ref_state::State,
S::Did: repo_ref_state::IsSet,
{
pub fn build(self) -> RepoRef<'a> {
RepoRef {
did: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<jacquard_common::deps::smol_str::SmolStr, Data<'a>>,
) -> RepoRef<'a> {
RepoRef {
did: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}
pub mod status_attr_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 Applied;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Applied = Unset;
}
pub struct SetApplied<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetApplied<S> {}
impl<S: State> State for SetApplied<S> {
type Applied = Set<members::applied>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct applied(());
}
}
pub struct StatusAttrBuilder<'a, S: status_attr_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<bool>, Option<CowStr<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> StatusAttr<'a> {
pub fn new() -> StatusAttrBuilder<'a, status_attr_state::Empty> {
StatusAttrBuilder::new()
}
}
impl<'a> StatusAttrBuilder<'a, status_attr_state::Empty> {
pub fn new() -> Self {
StatusAttrBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> StatusAttrBuilder<'a, S>
where
S: status_attr_state::State,
S::Applied: status_attr_state::IsUnset,
{
pub fn applied(
mut self,
value: impl Into<bool>,
) -> StatusAttrBuilder<'a, status_attr_state::SetApplied<S>> {
self._fields.0 = Option::Some(value.into());
StatusAttrBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: status_attr_state::State> StatusAttrBuilder<'a, S> {
pub fn r#ref(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_ref(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S> StatusAttrBuilder<'a, S>
where
S: status_attr_state::State,
S::Applied: status_attr_state::IsSet,
{
pub fn build(self) -> StatusAttr<'a> {
StatusAttr {
applied: self._fields.0.unwrap(),
r#ref: self._fields.1,
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<jacquard_common::deps::smol_str::SmolStr, Data<'a>>,
) -> StatusAttr<'a> {
StatusAttr {
applied: self._fields.0.unwrap(),
r#ref: self._fields.1,
extra_data: Some(extra_data),
}
}
}