pub struct GitDeletedRepository {
pub created_date: Option<OffsetDateTime>,
pub deleted_by: Option<IdentityRef>,
pub deleted_date: Option<OffsetDateTime>,
pub id: Option<String>,
pub name: Option<String>,
pub project: Option<TeamProjectReference>,
}Fields§
§created_date: Option<OffsetDateTime>§deleted_by: Option<IdentityRef>§deleted_date: Option<OffsetDateTime>§id: Option<String>§name: Option<String>§project: Option<TeamProjectReference>Represents a shallow reference to a TeamProject.
Implementations§
Trait Implementations§
Source§impl Clone for GitDeletedRepository
impl Clone for GitDeletedRepository
Source§fn clone(&self) -> GitDeletedRepository
fn clone(&self) -> GitDeletedRepository
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 GitDeletedRepository
impl Debug for GitDeletedRepository
Source§impl Default for GitDeletedRepository
impl Default for GitDeletedRepository
Source§fn default() -> GitDeletedRepository
fn default() -> GitDeletedRepository
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GitDeletedRepository
impl<'de> Deserialize<'de> for GitDeletedRepository
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 GitDeletedRepository
impl PartialEq for GitDeletedRepository
Source§impl Serialize for GitDeletedRepository
impl Serialize for GitDeletedRepository
impl StructuralPartialEq for GitDeletedRepository
Auto Trait Implementations§
impl Freeze for GitDeletedRepository
impl RefUnwindSafe for GitDeletedRepository
impl Send for GitDeletedRepository
impl Sync for GitDeletedRepository
impl Unpin for GitDeletedRepository
impl UnwindSafe for GitDeletedRepository
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