pub struct CommentsForComparedCommit {
pub after_blob_id: Option<String>,
pub after_commit_id: Option<String>,
pub before_blob_id: Option<String>,
pub before_commit_id: Option<String>,
pub comments: Option<Vec<Comment>>,
pub location: Option<Location>,
pub repository_name: Option<String>,
}Expand description
Returns information about comments on the comparison between two commits.
Fields§
§after_blob_id: Option<String>The full blob ID of the commit used to establish the after of the comparison.
after_commit_id: Option<String>The full commit ID of the commit used to establish the after of the comparison.
before_blob_id: Option<String>The full blob ID of the commit used to establish the before of the comparison.
before_commit_id: Option<String>The full commit ID of the commit used to establish the before of the comparison.
comments: Option<Vec<Comment>>An array of comment objects. Each comment object contains information about a comment on the comparison between commits.
location: Option<Location>Location information about the comment on the comparison, including the file name, line number, and whether the version of the file where the comment was made is BEFORE or AFTER.
repository_name: Option<String>The name of the repository that contains the compared commits.
Trait Implementations§
Source§impl Clone for CommentsForComparedCommit
impl Clone for CommentsForComparedCommit
Source§fn clone(&self) -> CommentsForComparedCommit
fn clone(&self) -> CommentsForComparedCommit
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 CommentsForComparedCommit
impl Debug for CommentsForComparedCommit
Source§impl Default for CommentsForComparedCommit
impl Default for CommentsForComparedCommit
Source§fn default() -> CommentsForComparedCommit
fn default() -> CommentsForComparedCommit
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CommentsForComparedCommit
impl<'de> Deserialize<'de> for CommentsForComparedCommit
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
impl StructuralPartialEq for CommentsForComparedCommit
Auto Trait Implementations§
impl Freeze for CommentsForComparedCommit
impl RefUnwindSafe for CommentsForComparedCommit
impl Send for CommentsForComparedCommit
impl Sync for CommentsForComparedCommit
impl Unpin for CommentsForComparedCommit
impl UnwindSafe for CommentsForComparedCommit
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