pub struct PageOfChangelogs {
pub start_at: Option<i32>,
pub max_results: Option<i32>,
pub total: Option<i32>,
pub histories: Option<Vec<Changelog>>,
}
Expand description
PageOfChangelogs : A page of changelogs.
Fields§
§start_at: Option<i32>
The index of the first item returned on the page.
max_results: Option<i32>
The maximum number of results that could be on the page.
total: Option<i32>
The number of results on the page.
histories: Option<Vec<Changelog>>
The list of changelogs.
Implementations§
Source§impl PageOfChangelogs
impl PageOfChangelogs
Sourcepub fn new() -> PageOfChangelogs
pub fn new() -> PageOfChangelogs
A page of changelogs.
Trait Implementations§
Source§impl Clone for PageOfChangelogs
impl Clone for PageOfChangelogs
Source§fn clone(&self) -> PageOfChangelogs
fn clone(&self) -> PageOfChangelogs
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 PageOfChangelogs
impl Debug for PageOfChangelogs
Source§impl<'de> Deserialize<'de> for PageOfChangelogs
impl<'de> Deserialize<'de> for PageOfChangelogs
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 PartialEq for PageOfChangelogs
impl PartialEq for PageOfChangelogs
Source§impl Serialize for PageOfChangelogs
impl Serialize for PageOfChangelogs
impl StructuralPartialEq for PageOfChangelogs
Auto Trait Implementations§
impl Freeze for PageOfChangelogs
impl RefUnwindSafe for PageOfChangelogs
impl Send for PageOfChangelogs
impl Sync for PageOfChangelogs
impl Unpin for PageOfChangelogs
impl UnwindSafe for PageOfChangelogs
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