pub struct ProjectSearchPayload {
pub edges: Option<Box<Vec<ProjectSearchResultEdge>>>,
pub nodes: Option<Box<Vec<ProjectSearchResult>>>,
pub page_info: Option<Box<PageInfo>>,
pub archive_payload: Option<Box<ArchiveResponse>>,
pub total_count: Option<f64>,
}Fields§
§edges: Option<Box<Vec<ProjectSearchResultEdge>>>§nodes: Option<Box<Vec<ProjectSearchResult>>>§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 ProjectSearchPayload
impl Clone for ProjectSearchPayload
Source§fn clone(&self) -> ProjectSearchPayload
fn clone(&self) -> ProjectSearchPayload
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 ProjectSearchPayload
impl Debug for ProjectSearchPayload
Source§impl Default for ProjectSearchPayload
impl Default for ProjectSearchPayload
Source§fn default() -> ProjectSearchPayload
fn default() -> ProjectSearchPayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectSearchPayloadwhere
ProjectSearchPayload: Default,
impl<'de> Deserialize<'de> for ProjectSearchPayloadwhere
ProjectSearchPayload: 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
Source§impl GraphQLFields for ProjectSearchPayload
impl GraphQLFields for ProjectSearchPayload
Auto Trait Implementations§
impl Freeze for ProjectSearchPayload
impl RefUnwindSafe for ProjectSearchPayload
impl Send for ProjectSearchPayload
impl Sync for ProjectSearchPayload
impl Unpin for ProjectSearchPayload
impl UnwindSafe for ProjectSearchPayload
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