pub struct GitPullRequestIterationChanges {
pub change_entries: Vec<GitPullRequestChange>,
pub next_skip: Option<i32>,
pub next_top: Option<i32>,
}Expand description
Collection of changes made in a pull request.
Fields§
§change_entries: Vec<GitPullRequestChange>Changes made in the iteration.
next_skip: Option<i32>Value to specify as skip to get the next page of changes. This will be zero if there are no more changes.
next_top: Option<i32>Value to specify as top to get the next page of changes. This will be zero if there are no more changes.
Implementations§
Trait Implementations§
Source§impl Clone for GitPullRequestIterationChanges
impl Clone for GitPullRequestIterationChanges
Source§fn clone(&self) -> GitPullRequestIterationChanges
fn clone(&self) -> GitPullRequestIterationChanges
Returns a copy 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 Default for GitPullRequestIterationChanges
impl Default for GitPullRequestIterationChanges
Source§fn default() -> GitPullRequestIterationChanges
fn default() -> GitPullRequestIterationChanges
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GitPullRequestIterationChanges
impl<'de> Deserialize<'de> for GitPullRequestIterationChanges
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 GitPullRequestIterationChanges
impl PartialEq for GitPullRequestIterationChanges
Source§fn eq(&self, other: &GitPullRequestIterationChanges) -> bool
fn eq(&self, other: &GitPullRequestIterationChanges) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GitPullRequestIterationChanges
Auto Trait Implementations§
impl Freeze for GitPullRequestIterationChanges
impl RefUnwindSafe for GitPullRequestIterationChanges
impl Send for GitPullRequestIterationChanges
impl Sync for GitPullRequestIterationChanges
impl Unpin for GitPullRequestIterationChanges
impl UnwindSafe for GitPullRequestIterationChanges
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