pub struct PostCommentForComparedCommitOutput {
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 comment: Option<Comment>,
pub location: Option<Location>,
pub repository_name: Option<String>,
}Fields§
§after_blob_id: Option<String>In the directionality you established, the blob ID of the after blob.
after_commit_id: Option<String>In the directionality you established, the full commit ID of the after commit.
before_blob_id: Option<String>In the directionality you established, the blob ID of the before blob.
before_commit_id: Option<String>In the directionality you established, the full commit ID of the before commit.
comment: Option<Comment>The content of the comment you posted.
location: Option<Location>The location of the comment in the comparison between the two commits.
repository_name: Option<String>The name of the repository where you posted a comment on the comparison between commits.
Trait Implementations§
Source§impl Clone for PostCommentForComparedCommitOutput
impl Clone for PostCommentForComparedCommitOutput
Source§fn clone(&self) -> PostCommentForComparedCommitOutput
fn clone(&self) -> PostCommentForComparedCommitOutput
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 Default for PostCommentForComparedCommitOutput
impl Default for PostCommentForComparedCommitOutput
Source§fn default() -> PostCommentForComparedCommitOutput
fn default() -> PostCommentForComparedCommitOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PostCommentForComparedCommitOutput
impl<'de> Deserialize<'de> for PostCommentForComparedCommitOutput
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 PostCommentForComparedCommitOutput
impl PartialEq for PostCommentForComparedCommitOutput
Source§fn eq(&self, other: &PostCommentForComparedCommitOutput) -> bool
fn eq(&self, other: &PostCommentForComparedCommitOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PostCommentForComparedCommitOutput
Auto Trait Implementations§
impl Freeze for PostCommentForComparedCommitOutput
impl RefUnwindSafe for PostCommentForComparedCommitOutput
impl Send for PostCommentForComparedCommitOutput
impl Sync for PostCommentForComparedCommitOutput
impl Unpin for PostCommentForComparedCommitOutput
impl UnwindSafe for PostCommentForComparedCommitOutput
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