pub struct GetArticleByPageRequest {
pub column_id: String,
pub page_no: i32,
pub page_size: i32,
pub site_id: i32,
}Expand description
Request for paginated article list.
Fields§
§column_id: StringColumn ID (e.g., “244” for announcements).
page_no: i32Page number (1-indexed).
page_size: i32Page size.
site_id: i32Site ID. Defaults to 5.
Trait Implementations§
Source§impl Clone for GetArticleByPageRequest
impl Clone for GetArticleByPageRequest
Source§fn clone(&self) -> GetArticleByPageRequest
fn clone(&self) -> GetArticleByPageRequest
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 GetArticleByPageRequest
impl Debug for GetArticleByPageRequest
Auto Trait Implementations§
impl Freeze for GetArticleByPageRequest
impl RefUnwindSafe for GetArticleByPageRequest
impl Send for GetArticleByPageRequest
impl Sync for GetArticleByPageRequest
impl Unpin for GetArticleByPageRequest
impl UnwindSafe for GetArticleByPageRequest
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