pub struct BatchGetCommitsOutput {
pub commits: Option<Vec<Commit>>,
pub errors: Option<Vec<CodeCommitBatchGetCommitsError>>,
}Fields§
§commits: Option<Vec<Commit>>An array of commit data type objects, each of which contains information about a specified commit.
errors: Option<Vec<CodeCommitBatchGetCommitsError>>Returns any commit IDs for which information could not be found. For example, if one of the commit IDs was a shortened SHA ID or that commit was not found in the specified repository, the ID returns an error object with more information.
Trait Implementations§
Source§impl Clone for BatchGetCommitsOutput
impl Clone for BatchGetCommitsOutput
Source§fn clone(&self) -> BatchGetCommitsOutput
fn clone(&self) -> BatchGetCommitsOutput
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 BatchGetCommitsOutput
impl Debug for BatchGetCommitsOutput
Source§impl Default for BatchGetCommitsOutput
impl Default for BatchGetCommitsOutput
Source§fn default() -> BatchGetCommitsOutput
fn default() -> BatchGetCommitsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchGetCommitsOutput
impl<'de> Deserialize<'de> for BatchGetCommitsOutput
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 BatchGetCommitsOutput
impl PartialEq for BatchGetCommitsOutput
impl StructuralPartialEq for BatchGetCommitsOutput
Auto Trait Implementations§
impl Freeze for BatchGetCommitsOutput
impl RefUnwindSafe for BatchGetCommitsOutput
impl Send for BatchGetCommitsOutput
impl Sync for BatchGetCommitsOutput
impl Unpin for BatchGetCommitsOutput
impl UnwindSafe for BatchGetCommitsOutput
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