nominal-api 0.1240.0

API bindings for the Nominal platform
Documentation
use conjure_object::serde::{ser, de};
use conjure_object::serde::ser::SerializeMap as SerializeMap_;
use conjure_object::private::{UnionField_, UnionTypeField_};
use std::fmt;
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum SearchTemplatesQuery {
    And(Vec<super::SearchTemplatesQuery>),
    Or(Vec<super::SearchTemplatesQuery>),
    Not(Box<super::SearchTemplatesQuery>),
    /// Performs case insensitive exact match search on the title.
    ExactMatch(String),
    /// Searches title and description only
    SearchText(String),
    #[deprecated(note = "use labels instead")]
    Label(super::super::super::super::api::Label),
    Labels(super::super::super::rids::api::LabelsFilter),
    #[deprecated(note = "use properties")]
    Property(super::super::super::super::api::Property),
    Properties(super::super::super::rids::api::PropertiesFilter),
    CreatedBy(super::super::super::rids::api::UserRid),
    IsArchived(bool),
    IsPublished(bool),
    Workspace(super::super::super::super::api::rids::WorkspaceRid),
    AuthorIsCurrentUser(bool),
    AuthorRids(std::collections::BTreeSet<super::super::super::rids::api::UserRid>),
    /// An unknown variant.
    Unknown(Unknown),
}
impl ser::Serialize for SearchTemplatesQuery {
    fn serialize<S>(&self, s: S) -> Result<S::Ok, S::Error>
    where
        S: ser::Serializer,
    {
        let mut map = s.serialize_map(Some(2))?;
        match self {
            SearchTemplatesQuery::And(value) => {
                map.serialize_entry(&"type", &"and")?;
                map.serialize_entry(&"and", value)?;
            }
            SearchTemplatesQuery::Or(value) => {
                map.serialize_entry(&"type", &"or")?;
                map.serialize_entry(&"or", value)?;
            }
            SearchTemplatesQuery::Not(value) => {
                map.serialize_entry(&"type", &"not")?;
                map.serialize_entry(&"not", value)?;
            }
            SearchTemplatesQuery::ExactMatch(value) => {
                map.serialize_entry(&"type", &"exactMatch")?;
                map.serialize_entry(&"exactMatch", value)?;
            }
            SearchTemplatesQuery::SearchText(value) => {
                map.serialize_entry(&"type", &"searchText")?;
                map.serialize_entry(&"searchText", value)?;
            }
            #[allow(deprecated)]
            SearchTemplatesQuery::Label(value) => {
                map.serialize_entry(&"type", &"label")?;
                map.serialize_entry(&"label", value)?;
            }
            SearchTemplatesQuery::Labels(value) => {
                map.serialize_entry(&"type", &"labels")?;
                map.serialize_entry(&"labels", value)?;
            }
            #[allow(deprecated)]
            SearchTemplatesQuery::Property(value) => {
                map.serialize_entry(&"type", &"property")?;
                map.serialize_entry(&"property", value)?;
            }
            SearchTemplatesQuery::Properties(value) => {
                map.serialize_entry(&"type", &"properties")?;
                map.serialize_entry(&"properties", value)?;
            }
            SearchTemplatesQuery::CreatedBy(value) => {
                map.serialize_entry(&"type", &"createdBy")?;
                map.serialize_entry(&"createdBy", value)?;
            }
            SearchTemplatesQuery::IsArchived(value) => {
                map.serialize_entry(&"type", &"isArchived")?;
                map.serialize_entry(&"isArchived", value)?;
            }
            SearchTemplatesQuery::IsPublished(value) => {
                map.serialize_entry(&"type", &"isPublished")?;
                map.serialize_entry(&"isPublished", value)?;
            }
            SearchTemplatesQuery::Workspace(value) => {
                map.serialize_entry(&"type", &"workspace")?;
                map.serialize_entry(&"workspace", value)?;
            }
            SearchTemplatesQuery::AuthorIsCurrentUser(value) => {
                map.serialize_entry(&"type", &"authorIsCurrentUser")?;
                map.serialize_entry(&"authorIsCurrentUser", value)?;
            }
            SearchTemplatesQuery::AuthorRids(value) => {
                map.serialize_entry(&"type", &"authorRids")?;
                map.serialize_entry(&"authorRids", value)?;
            }
            SearchTemplatesQuery::Unknown(value) => {
                map.serialize_entry(&"type", &value.type_)?;
                map.serialize_entry(&value.type_, &value.value)?;
            }
        }
        map.end()
    }
}
impl<'de> de::Deserialize<'de> for SearchTemplatesQuery {
    fn deserialize<D>(d: D) -> Result<SearchTemplatesQuery, D::Error>
    where
        D: de::Deserializer<'de>,
    {
        d.deserialize_map(Visitor_)
    }
}
struct Visitor_;
impl<'de> de::Visitor<'de> for Visitor_ {
    type Value = SearchTemplatesQuery;
    fn expecting(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        fmt.write_str("union SearchTemplatesQuery")
    }
    fn visit_map<A>(self, mut map: A) -> Result<SearchTemplatesQuery, A::Error>
    where
        A: de::MapAccess<'de>,
    {
        let v = match map.next_key::<UnionField_<Variant_>>()? {
            Some(UnionField_::Type) => {
                let variant = map.next_value()?;
                let key = map.next_key()?;
                match (variant, key) {
                    (Variant_::And, Some(Variant_::And)) => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::And(value)
                    }
                    (Variant_::Or, Some(Variant_::Or)) => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::Or(value)
                    }
                    (Variant_::Not, Some(Variant_::Not)) => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::Not(value)
                    }
                    (Variant_::ExactMatch, Some(Variant_::ExactMatch)) => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::ExactMatch(value)
                    }
                    (Variant_::SearchText, Some(Variant_::SearchText)) => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::SearchText(value)
                    }
                    #[allow(deprecated)]
                    (Variant_::Label, Some(Variant_::Label)) => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::Label(value)
                    }
                    (Variant_::Labels, Some(Variant_::Labels)) => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::Labels(value)
                    }
                    #[allow(deprecated)]
                    (Variant_::Property, Some(Variant_::Property)) => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::Property(value)
                    }
                    (Variant_::Properties, Some(Variant_::Properties)) => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::Properties(value)
                    }
                    (Variant_::CreatedBy, Some(Variant_::CreatedBy)) => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::CreatedBy(value)
                    }
                    (Variant_::IsArchived, Some(Variant_::IsArchived)) => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::IsArchived(value)
                    }
                    (Variant_::IsPublished, Some(Variant_::IsPublished)) => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::IsPublished(value)
                    }
                    (Variant_::Workspace, Some(Variant_::Workspace)) => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::Workspace(value)
                    }
                    (
                        Variant_::AuthorIsCurrentUser,
                        Some(Variant_::AuthorIsCurrentUser),
                    ) => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::AuthorIsCurrentUser(value)
                    }
                    (Variant_::AuthorRids, Some(Variant_::AuthorRids)) => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::AuthorRids(value)
                    }
                    (Variant_::Unknown(type_), Some(Variant_::Unknown(b))) => {
                        if type_ == b {
                            let value = map.next_value()?;
                            SearchTemplatesQuery::Unknown(Unknown { type_, value })
                        } else {
                            return Err(
                                de::Error::invalid_value(de::Unexpected::Str(&type_), &&*b),
                            )
                        }
                    }
                    (variant, Some(key)) => {
                        return Err(
                            de::Error::invalid_value(
                                de::Unexpected::Str(key.as_str()),
                                &variant.as_str(),
                            ),
                        );
                    }
                    (variant, None) => {
                        return Err(de::Error::missing_field(variant.as_str()));
                    }
                }
            }
            Some(UnionField_::Value(variant)) => {
                let value = match &variant {
                    Variant_::And => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::And(value)
                    }
                    Variant_::Or => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::Or(value)
                    }
                    Variant_::Not => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::Not(value)
                    }
                    Variant_::ExactMatch => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::ExactMatch(value)
                    }
                    Variant_::SearchText => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::SearchText(value)
                    }
                    Variant_::Label => {
                        let value = map.next_value()?;
                        #[allow(deprecated)] SearchTemplatesQuery::Label(value)
                    }
                    Variant_::Labels => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::Labels(value)
                    }
                    Variant_::Property => {
                        let value = map.next_value()?;
                        #[allow(deprecated)] SearchTemplatesQuery::Property(value)
                    }
                    Variant_::Properties => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::Properties(value)
                    }
                    Variant_::CreatedBy => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::CreatedBy(value)
                    }
                    Variant_::IsArchived => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::IsArchived(value)
                    }
                    Variant_::IsPublished => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::IsPublished(value)
                    }
                    Variant_::Workspace => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::Workspace(value)
                    }
                    Variant_::AuthorIsCurrentUser => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::AuthorIsCurrentUser(value)
                    }
                    Variant_::AuthorRids => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::AuthorRids(value)
                    }
                    Variant_::Unknown(type_) => {
                        let value = map.next_value()?;
                        SearchTemplatesQuery::Unknown(Unknown {
                            type_: type_.clone(),
                            value,
                        })
                    }
                };
                if map.next_key::<UnionTypeField_>()?.is_none() {
                    return Err(de::Error::missing_field("type"));
                }
                let type_variant = map.next_value::<Variant_>()?;
                if variant != type_variant {
                    return Err(
                        de::Error::invalid_value(
                            de::Unexpected::Str(type_variant.as_str()),
                            &variant.as_str(),
                        ),
                    );
                }
                value
            }
            None => return Err(de::Error::missing_field("type")),
        };
        if map.next_key::<UnionField_<Variant_>>()?.is_some() {
            return Err(de::Error::invalid_length(3, &"type and value fields"));
        }
        Ok(v)
    }
}
#[derive(PartialEq)]
enum Variant_ {
    And,
    Or,
    Not,
    ExactMatch,
    SearchText,
    Label,
    Labels,
    Property,
    Properties,
    CreatedBy,
    IsArchived,
    IsPublished,
    Workspace,
    AuthorIsCurrentUser,
    AuthorRids,
    Unknown(Box<str>),
}
impl Variant_ {
    fn as_str(&self) -> &'static str {
        match *self {
            Variant_::And => "and",
            Variant_::Or => "or",
            Variant_::Not => "not",
            Variant_::ExactMatch => "exactMatch",
            Variant_::SearchText => "searchText",
            Variant_::Label => "label",
            Variant_::Labels => "labels",
            Variant_::Property => "property",
            Variant_::Properties => "properties",
            Variant_::CreatedBy => "createdBy",
            Variant_::IsArchived => "isArchived",
            Variant_::IsPublished => "isPublished",
            Variant_::Workspace => "workspace",
            Variant_::AuthorIsCurrentUser => "authorIsCurrentUser",
            Variant_::AuthorRids => "authorRids",
            Variant_::Unknown(_) => "unknown variant",
        }
    }
}
impl<'de> de::Deserialize<'de> for Variant_ {
    fn deserialize<D>(d: D) -> Result<Variant_, D::Error>
    where
        D: de::Deserializer<'de>,
    {
        d.deserialize_str(VariantVisitor_)
    }
}
struct VariantVisitor_;
impl<'de> de::Visitor<'de> for VariantVisitor_ {
    type Value = Variant_;
    fn expecting(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        fmt.write_str("string")
    }
    fn visit_str<E>(self, value: &str) -> Result<Variant_, E>
    where
        E: de::Error,
    {
        let v = match value {
            "and" => Variant_::And,
            "or" => Variant_::Or,
            "not" => Variant_::Not,
            "exactMatch" => Variant_::ExactMatch,
            "searchText" => Variant_::SearchText,
            "label" => Variant_::Label,
            "labels" => Variant_::Labels,
            "property" => Variant_::Property,
            "properties" => Variant_::Properties,
            "createdBy" => Variant_::CreatedBy,
            "isArchived" => Variant_::IsArchived,
            "isPublished" => Variant_::IsPublished,
            "workspace" => Variant_::Workspace,
            "authorIsCurrentUser" => Variant_::AuthorIsCurrentUser,
            "authorRids" => Variant_::AuthorRids,
            value => Variant_::Unknown(value.to_string().into_boxed_str()),
        };
        Ok(v)
    }
}
///An unknown variant of the SearchTemplatesQuery union.
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct Unknown {
    type_: Box<str>,
    value: conjure_object::Any,
}
impl Unknown {
    /// Returns the unknown variant's type name.
    #[inline]
    pub fn type_(&self) -> &str {
        &self.type_
    }
}