pub struct GetArticleByPageResponse {
pub column_id: String,
pub total_count: i32,
pub result_list: Vec<Article>,
}Expand description
Response for paginated article list.
Fields§
§column_id: StringColumn ID.
total_count: i32Total count of articles.
result_list: Vec<Article>List of articles.
Trait Implementations§
Source§impl Clone for GetArticleByPageResponse
impl Clone for GetArticleByPageResponse
Source§fn clone(&self) -> GetArticleByPageResponse
fn clone(&self) -> GetArticleByPageResponse
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 GetArticleByPageResponse
impl Debug for GetArticleByPageResponse
Source§impl<'de> Deserialize<'de> for GetArticleByPageResponse
impl<'de> Deserialize<'de> for GetArticleByPageResponse
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 GetArticleByPageResponse
impl RefUnwindSafe for GetArticleByPageResponse
impl Send for GetArticleByPageResponse
impl Sync for GetArticleByPageResponse
impl Unpin for GetArticleByPageResponse
impl UnwindSafe for GetArticleByPageResponse
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