pub struct CompareResponse {
pub commits: Vec<CompareCommit>,
}Expand description
Response from the compare API.
Fields§
§commits: Vec<CompareCommit>Trait Implementations§
Source§impl Clone for CompareResponse
impl Clone for CompareResponse
Source§fn clone(&self) -> CompareResponse
fn clone(&self) -> CompareResponse
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 CompareResponse
impl Debug for CompareResponse
Source§impl<'de> Deserialize<'de> for CompareResponse
impl<'de> Deserialize<'de> for CompareResponse
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 CompareResponse
impl RefUnwindSafe for CompareResponse
impl Send for CompareResponse
impl Sync for CompareResponse
impl Unpin for CompareResponse
impl UnsafeUnpin for CompareResponse
impl UnwindSafe for CompareResponse
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