nominal-api 0.1239.0

API bindings for the Nominal platform
Documentation
#[derive(
    Debug,
    Clone,
    conjure_object::serde::Serialize,
    conjure_object::serde::Deserialize,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    Hash
)]
#[serde(crate = "conjure_object::serde")]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct BatchSearchChannelsResponse {
    #[builder(default, set(item(type = super::BatchedLocator)))]
    #[serde(
        rename = "allExpandedLocators",
        skip_serializing_if = "std::collections::BTreeSet::is_empty",
        default
    )]
    all_expanded_locators: std::collections::BTreeSet<super::BatchedLocator>,
    #[builder(default, list(item(type = super::BatchedChannelEntry)))]
    #[serde(rename = "results", skip_serializing_if = "Vec::is_empty", default)]
    results: Vec<super::BatchedChannelEntry>,
}
impl BatchSearchChannelsResponse {
    /// Constructs a new instance of the type.
    #[inline]
    pub fn new() -> Self {
        Self::builder().build()
    }
    /// All locators expanded from the union of entry scopes in the batch, independent of
    /// which channels exist within them.
    #[inline]
    pub fn all_expanded_locators(
        &self,
    ) -> &std::collections::BTreeSet<super::BatchedLocator> {
        &self.all_expanded_locators
    }
    /// Channels matching the shared query, ordered by global relevance score (descending)
    /// from the underlying search. Each entry's `locatorMetadata` covers all locators across
    /// all entries where the channel exists; locators are tagged with the set of entry ids
    /// that expanded to them.
    #[inline]
    pub fn results(&self) -> &[super::BatchedChannelEntry] {
        &*self.results
    }
}