pub struct KnowledgeListQuery {
pub page: Option<u32>,
pub size: Option<u32>,
}Expand description
Query parameters for knowledge list API
Fields§
§page: Option<u32>Page index starting from 1 (default 1)
size: Option<u32>Page size (default 10)
Implementations§
Trait Implementations§
Source§impl Clone for KnowledgeListQuery
impl Clone for KnowledgeListQuery
Source§fn clone(&self) -> KnowledgeListQuery
fn clone(&self) -> KnowledgeListQuery
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 KnowledgeListQuery
impl Debug for KnowledgeListQuery
Source§impl Default for KnowledgeListQuery
impl Default for KnowledgeListQuery
Source§fn default() -> KnowledgeListQuery
fn default() -> KnowledgeListQuery
Returns the “default value” for a type. Read more
Source§impl Serialize for KnowledgeListQuery
impl Serialize for KnowledgeListQuery
Source§impl Validate for KnowledgeListQuery
impl Validate for KnowledgeListQuery
Source§impl<'v_a> ValidateArgs<'v_a> for KnowledgeListQuery
impl<'v_a> ValidateArgs<'v_a> for KnowledgeListQuery
Auto Trait Implementations§
impl Freeze for KnowledgeListQuery
impl RefUnwindSafe for KnowledgeListQuery
impl Send for KnowledgeListQuery
impl Sync for KnowledgeListQuery
impl Unpin for KnowledgeListQuery
impl UnwindSafe for KnowledgeListQuery
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