#[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::ident::AtIdentifier;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, 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 MuteActor<S: BosStr = DefaultStr> {
pub actor: AtIdentifier<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct MuteActorResponse;
impl jacquard_common::xrpc::XrpcResp for MuteActorResponse {
const NSID: &'static str = "app.bsky.graph.muteActor";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ();
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for MuteActor<S> {
const NSID: &'static str = "app.bsky.graph.muteActor";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Response = MuteActorResponse;
}
pub struct MuteActorRequest;
impl jacquard_common::xrpc::XrpcEndpoint for MuteActorRequest {
const PATH: &'static str = "/xrpc/app.bsky.graph.muteActor";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Request<S: BosStr> = MuteActor<S>;
type Response = MuteActorResponse;
}
pub mod mute_actor_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 Actor;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Actor = Unset;
}
pub struct SetActor<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetActor<St> {}
impl<St: State> State for SetActor<St> {
type Actor = Set<members::actor>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct actor(());
}
}
pub struct MuteActorBuilder<S: BosStr, St: mute_actor_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<AtIdentifier<S>>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> MuteActor<S> {
pub fn new() -> MuteActorBuilder<S, mute_actor_state::Empty> {
MuteActorBuilder::new()
}
}
impl<S: BosStr> MuteActorBuilder<S, mute_actor_state::Empty> {
pub fn new() -> Self {
MuteActorBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> MuteActorBuilder<S, St>
where
St: mute_actor_state::State,
St::Actor: mute_actor_state::IsUnset,
{
pub fn actor(
mut self,
value: impl Into<AtIdentifier<S>>,
) -> MuteActorBuilder<S, mute_actor_state::SetActor<St>> {
self._fields.0 = Option::Some(value.into());
MuteActorBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> MuteActorBuilder<S, St>
where
St: mute_actor_state::State,
St::Actor: mute_actor_state::IsSet,
{
pub fn build(self) -> MuteActor<S> {
MuteActor {
actor: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> MuteActor<S> {
MuteActor {
actor: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}