pub struct DocumentSearchPayload {
pub edges: Option<Box<Vec<DocumentSearchResultEdge>>>,
pub nodes: Option<Box<Vec<DocumentSearchResult>>>,
pub page_info: Option<Box<PageInfo>>,
pub archive_payload: Option<Box<ArchiveResponse>>,
pub total_count: Option<f64>,
}Fields§
§edges: Option<Box<Vec<DocumentSearchResultEdge>>>§nodes: Option<Box<Vec<DocumentSearchResult>>>§page_info: Option<Box<PageInfo>>§archive_payload: Option<Box<ArchiveResponse>>Archived entities matching the search term along with all their dependencies.
total_count: Option<f64>Total number of results for query without filters applied.
Trait Implementations§
Source§impl Clone for DocumentSearchPayload
impl Clone for DocumentSearchPayload
Source§fn clone(&self) -> DocumentSearchPayload
fn clone(&self) -> DocumentSearchPayload
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DocumentSearchPayload
impl Debug for DocumentSearchPayload
Source§impl Default for DocumentSearchPayload
impl Default for DocumentSearchPayload
Source§fn default() -> DocumentSearchPayload
fn default() -> DocumentSearchPayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DocumentSearchPayloadwhere
DocumentSearchPayload: Default,
impl<'de> Deserialize<'de> for DocumentSearchPayloadwhere
DocumentSearchPayload: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DocumentSearchPayload
impl RefUnwindSafe for DocumentSearchPayload
impl Send for DocumentSearchPayload
impl Sync for DocumentSearchPayload
impl Unpin for DocumentSearchPayload
impl UnwindSafe for DocumentSearchPayload
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more