jacquard-api 0.12.0-beta.2

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: sh.tangled.repo.forkSync
//
// 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::deps::smol_str::SmolStr;
use jacquard_common::types::string::{AtUri, Did};
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, CowStr, DefaultStr, FromStaticStr};
use jacquard_derive::IntoStatic;
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
    rename_all = "camelCase",
    bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct ForkSync<S: BosStr = DefaultStr> {
    ///Branch to sync
    pub branch: S,
    ///DID of the fork owner
    pub did: Did<S>,
    ///Name of the forked repository
    pub name: S,
    ///AT-URI of the source repository
    pub source: AtUri<S>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

/// Response type for sh.tangled.repo.forkSync
pub struct ForkSyncResponse;
impl jacquard_common::xrpc::XrpcResp for ForkSyncResponse {
    const NSID: &'static str = "sh.tangled.repo.forkSync";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = ();
    type Err = jacquard_common::xrpc::GenericError;
}

impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for ForkSync<S> {
    const NSID: &'static str = "sh.tangled.repo.forkSync";
    const METHOD: jacquard_common::xrpc::XrpcMethod =
        jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
    type Response = ForkSyncResponse;
}

/// Endpoint type for sh.tangled.repo.forkSync
pub struct ForkSyncRequest;
impl jacquard_common::xrpc::XrpcEndpoint for ForkSyncRequest {
    const PATH: &'static str = "/xrpc/sh.tangled.repo.forkSync";
    const METHOD: jacquard_common::xrpc::XrpcMethod =
        jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
    type Request<S: BosStr> = ForkSync<S>;
    type Response = ForkSyncResponse;
}

pub mod fork_sync_state {

    pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
    #[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 Name;
        type Branch;
        type Did;
        type Source;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Name = Unset;
        type Branch = Unset;
        type Did = Unset;
        type Source = Unset;
    }
    ///State transition - sets the `name` field to Set
    pub struct SetName<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetName<St> {}
    impl<St: State> State for SetName<St> {
        type Name = Set<members::name>;
        type Branch = St::Branch;
        type Did = St::Did;
        type Source = St::Source;
    }
    ///State transition - sets the `branch` field to Set
    pub struct SetBranch<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetBranch<St> {}
    impl<St: State> State for SetBranch<St> {
        type Name = St::Name;
        type Branch = Set<members::branch>;
        type Did = St::Did;
        type Source = St::Source;
    }
    ///State transition - sets the `did` field to Set
    pub struct SetDid<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetDid<St> {}
    impl<St: State> State for SetDid<St> {
        type Name = St::Name;
        type Branch = St::Branch;
        type Did = Set<members::did>;
        type Source = St::Source;
    }
    ///State transition - sets the `source` field to Set
    pub struct SetSource<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetSource<St> {}
    impl<St: State> State for SetSource<St> {
        type Name = St::Name;
        type Branch = St::Branch;
        type Did = St::Did;
        type Source = Set<members::source>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `name` field
        pub struct name(());
        ///Marker type for the `branch` field
        pub struct branch(());
        ///Marker type for the `did` field
        pub struct did(());
        ///Marker type for the `source` field
        pub struct source(());
    }
}

/// Builder for constructing an instance of this type.
pub struct ForkSyncBuilder<S: BosStr, St: fork_sync_state::State> {
    _state: PhantomData<fn() -> St>,
    _fields: (Option<S>, Option<Did<S>>, Option<S>, Option<AtUri<S>>),
    _type: PhantomData<fn() -> S>,
}

impl<S: BosStr> ForkSync<S> {
    /// Create a new builder for this type.
    pub fn new() -> ForkSyncBuilder<S, fork_sync_state::Empty> {
        ForkSyncBuilder::new()
    }
}

impl<S: BosStr> ForkSyncBuilder<S, fork_sync_state::Empty> {
    /// Create a new builder with all fields unset.
    pub fn new() -> Self {
        ForkSyncBuilder {
            _state: PhantomData,
            _fields: (None, None, None, None),
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> ForkSyncBuilder<S, St>
where
    St: fork_sync_state::State,
    St::Branch: fork_sync_state::IsUnset,
{
    /// Set the `branch` field (required)
    pub fn branch(
        mut self,
        value: impl Into<S>,
    ) -> ForkSyncBuilder<S, fork_sync_state::SetBranch<St>> {
        self._fields.0 = Option::Some(value.into());
        ForkSyncBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> ForkSyncBuilder<S, St>
where
    St: fork_sync_state::State,
    St::Did: fork_sync_state::IsUnset,
{
    /// Set the `did` field (required)
    pub fn did(
        mut self,
        value: impl Into<Did<S>>,
    ) -> ForkSyncBuilder<S, fork_sync_state::SetDid<St>> {
        self._fields.1 = Option::Some(value.into());
        ForkSyncBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> ForkSyncBuilder<S, St>
where
    St: fork_sync_state::State,
    St::Name: fork_sync_state::IsUnset,
{
    /// Set the `name` field (required)
    pub fn name(mut self, value: impl Into<S>) -> ForkSyncBuilder<S, fork_sync_state::SetName<St>> {
        self._fields.2 = Option::Some(value.into());
        ForkSyncBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> ForkSyncBuilder<S, St>
where
    St: fork_sync_state::State,
    St::Source: fork_sync_state::IsUnset,
{
    /// Set the `source` field (required)
    pub fn source(
        mut self,
        value: impl Into<AtUri<S>>,
    ) -> ForkSyncBuilder<S, fork_sync_state::SetSource<St>> {
        self._fields.3 = Option::Some(value.into());
        ForkSyncBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> ForkSyncBuilder<S, St>
where
    St: fork_sync_state::State,
    St::Name: fork_sync_state::IsSet,
    St::Branch: fork_sync_state::IsSet,
    St::Did: fork_sync_state::IsSet,
    St::Source: fork_sync_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> ForkSync<S> {
        ForkSync {
            branch: self._fields.0.unwrap(),
            did: self._fields.1.unwrap(),
            name: self._fields.2.unwrap(),
            source: self._fields.3.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data.
    pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> ForkSync<S> {
        ForkSync {
            branch: self._fields.0.unwrap(),
            did: self._fields.1.unwrap(),
            name: self._fields.2.unwrap(),
            source: self._fields.3.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}