pub mod get_ingest_urls;
#[jacquard_derive::lexicon]
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct Ingest<'a> {
#[serde(borrow)]
pub r#type: jacquard_common::CowStr<'a>,
#[serde(borrow)]
pub url: jacquard_common::types::string::UriValue<'a>,
}
pub mod ingest_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 Type;
type Url;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Type = Unset;
type Url = Unset;
}
pub struct SetType<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetType<S> {}
impl<S: State> State for SetType<S> {
type Type = Set<members::r#type>;
type Url = S::Url;
}
pub struct SetUrl<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUrl<S> {}
impl<S: State> State for SetUrl<S> {
type Type = S::Type;
type Url = Set<members::url>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct r#type(());
pub struct url(());
}
}
pub struct IngestBuilder<'a, S: ingest_state::State> {
_phantom_state: ::core::marker::PhantomData<fn() -> S>,
__unsafe_private_named: (
::core::option::Option<jacquard_common::CowStr<'a>>,
::core::option::Option<jacquard_common::types::string::UriValue<'a>>,
),
_phantom: ::core::marker::PhantomData<&'a ()>,
}
impl<'a> Ingest<'a> {
pub fn new() -> IngestBuilder<'a, ingest_state::Empty> {
IngestBuilder::new()
}
}
impl<'a> IngestBuilder<'a, ingest_state::Empty> {
pub fn new() -> Self {
IngestBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: (None, None),
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> IngestBuilder<'a, S>
where
S: ingest_state::State,
S::Type: ingest_state::IsUnset,
{
pub fn r#type(
mut self,
value: impl Into<jacquard_common::CowStr<'a>>,
) -> IngestBuilder<'a, ingest_state::SetType<S>> {
self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into());
IngestBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> IngestBuilder<'a, S>
where
S: ingest_state::State,
S::Url: ingest_state::IsUnset,
{
pub fn url(
mut self,
value: impl Into<jacquard_common::types::string::UriValue<'a>>,
) -> IngestBuilder<'a, ingest_state::SetUrl<S>> {
self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into());
IngestBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S> IngestBuilder<'a, S>
where
S: ingest_state::State,
S::Type: ingest_state::IsSet,
S::Url: ingest_state::IsSet,
{
pub fn build(self) -> Ingest<'a> {
Ingest {
r#type: self.__unsafe_private_named.0.unwrap(),
url: self.__unsafe_private_named.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: std::collections::BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Ingest<'a> {
Ingest {
r#type: self.__unsafe_private_named.0.unwrap(),
url: self.__unsafe_private_named.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_place_stream_ingest_defs() -> ::jacquard_lexicon::lexicon::LexiconDoc<
'static,
> {
::jacquard_lexicon::lexicon::LexiconDoc {
lexicon: ::jacquard_lexicon::lexicon::Lexicon::Lexicon1,
id: ::jacquard_common::CowStr::new_static("place.stream.ingest.defs"),
revision: None,
description: None,
defs: {
let mut map = ::alloc::collections::BTreeMap::new();
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static("ingest"),
::jacquard_lexicon::lexicon::LexUserType::Object(::jacquard_lexicon::lexicon::LexObject {
description: Some(
::jacquard_common::CowStr::new_static(
"An ingest URL for a Streamplace station.",
),
),
required: Some(
vec![
::jacquard_common::deps::smol_str::SmolStr::new_static("type"),
::jacquard_common::deps::smol_str::SmolStr::new_static("url")
],
),
nullable: None,
properties: {
#[allow(unused_mut)]
let mut map = ::alloc::collections::BTreeMap::new();
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"type",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: Some(
::jacquard_common::CowStr::new_static(
"The type of ingest endpoint, currently 'rtmp' and 'whip' are supported.",
),
),
format: None,
default: None,
min_length: None,
max_length: None,
min_graphemes: None,
max_graphemes: None,
r#enum: None,
r#const: None,
known_values: None,
}),
);
map.insert(
::jacquard_common::deps::smol_str::SmolStr::new_static(
"url",
),
::jacquard_lexicon::lexicon::LexObjectProperty::String(::jacquard_lexicon::lexicon::LexString {
description: Some(
::jacquard_common::CowStr::new_static(
"The URL of the ingest endpoint.",
),
),
format: Some(
::jacquard_lexicon::lexicon::LexStringFormat::Uri,
),
default: None,
min_length: None,
max_length: None,
min_graphemes: None,
max_graphemes: None,
r#enum: None,
r#const: None,
known_values: None,
}),
);
map
},
}),
);
map
},
}
}
impl<'a> ::jacquard_lexicon::schema::LexiconSchema for Ingest<'a> {
fn nsid() -> &'static str {
"place.stream.ingest.defs"
}
fn def_name() -> &'static str {
"ingest"
}
fn lexicon_doc() -> ::jacquard_lexicon::lexicon::LexiconDoc<'static> {
lexicon_doc_place_stream_ingest_defs()
}
fn validate(
&self,
) -> ::core::result::Result<(), ::jacquard_lexicon::validation::ConstraintError> {
Ok(())
}
}