#[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 WorkbookSearchState {
#[builder(
default,
custom(
type = impl
Into<Option<super::super::super::notebook::api::SortBy>>,
convert = |v|v.into().map(Box::new)
)
)]
#[serde(rename = "sort", skip_serializing_if = "Option::is_none", default)]
sort: Option<Box<super::super::super::notebook::api::SortBy>>,
#[builder(
custom(
type = super::super::super::notebook::api::SearchNotebooksQuery,
convert = Box::new
)
)]
#[serde(rename = "query")]
query: Box<super::super::super::notebook::api::SearchNotebooksQuery>,
}
impl WorkbookSearchState {
#[inline]
pub fn new(query: super::super::super::notebook::api::SearchNotebooksQuery) -> Self {
Self::builder().query(query).build()
}
#[inline]
pub fn sort(&self) -> Option<&super::super::super::notebook::api::SortBy> {
self.sort.as_ref().map(|o| &**o)
}
#[inline]
pub fn query(&self) -> &super::super::super::notebook::api::SearchNotebooksQuery {
&*self.query
}
}