Struct azure_devops_rust_api::git::models::GitLastChangeTreeItems
source · pub struct GitLastChangeTreeItems {
pub commits: Vec<GitCommitRef>,
pub items: Vec<GitLastChangeItem>,
pub last_explored_time: Option<OffsetDateTime>,
}
Expand description
Fields§
§commits: Vec<GitCommitRef>
The list of commits referenced by Items, if they were requested.
items: Vec<GitLastChangeItem>
The last change of items.
last_explored_time: Option<OffsetDateTime>
The last explored time, in case the result is not comprehensive. Null otherwise.
Implementations§
Trait Implementations§
source§impl Clone for GitLastChangeTreeItems
impl Clone for GitLastChangeTreeItems
source§fn clone(&self) -> GitLastChangeTreeItems
fn clone(&self) -> GitLastChangeTreeItems
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 Debug for GitLastChangeTreeItems
impl Debug for GitLastChangeTreeItems
source§impl Default for GitLastChangeTreeItems
impl Default for GitLastChangeTreeItems
source§fn default() -> GitLastChangeTreeItems
fn default() -> GitLastChangeTreeItems
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GitLastChangeTreeItems
impl<'de> Deserialize<'de> for GitLastChangeTreeItems
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 GitLastChangeTreeItems
impl PartialEq for GitLastChangeTreeItems
source§fn eq(&self, other: &GitLastChangeTreeItems) -> bool
fn eq(&self, other: &GitLastChangeTreeItems) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for GitLastChangeTreeItems
impl Serialize for GitLastChangeTreeItems
impl StructuralPartialEq for GitLastChangeTreeItems
Auto Trait Implementations§
impl RefUnwindSafe for GitLastChangeTreeItems
impl Send for GitLastChangeTreeItems
impl Sync for GitLastChangeTreeItems
impl Unpin for GitLastChangeTreeItems
impl UnwindSafe for GitLastChangeTreeItems
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