pub struct SourceControlSyncJobByIdProperties {
pub source_control_sync_job_id: Option<String>,
pub creation_time: Option<OffsetDateTime>,
pub provisioning_state: Option<ProvisioningState>,
pub start_time: Option<OffsetDateTime>,
pub end_time: Option<OffsetDateTime>,
pub sync_type: Option<SyncType>,
pub exception: Option<String>,
}Expand description
Definition of source control sync job properties.
Fields§
§source_control_sync_job_id: Option<String>The source control sync job id.
creation_time: Option<OffsetDateTime>The creation time of the job.
provisioning_state: Option<ProvisioningState>The provisioning state of the job.
start_time: Option<OffsetDateTime>The start time of the job.
end_time: Option<OffsetDateTime>The end time of the job.
sync_type: Option<SyncType>The sync type.
exception: Option<String>The exceptions that occurred while running the sync job.
Implementations§
Trait Implementations§
Source§impl Clone for SourceControlSyncJobByIdProperties
impl Clone for SourceControlSyncJobByIdProperties
Source§fn clone(&self) -> SourceControlSyncJobByIdProperties
fn clone(&self) -> SourceControlSyncJobByIdProperties
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 SourceControlSyncJobByIdProperties
impl Default for SourceControlSyncJobByIdProperties
Source§fn default() -> SourceControlSyncJobByIdProperties
fn default() -> SourceControlSyncJobByIdProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SourceControlSyncJobByIdProperties
impl<'de> Deserialize<'de> for SourceControlSyncJobByIdProperties
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 SourceControlSyncJobByIdProperties
impl PartialEq for SourceControlSyncJobByIdProperties
Source§fn eq(&self, other: &SourceControlSyncJobByIdProperties) -> bool
fn eq(&self, other: &SourceControlSyncJobByIdProperties) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SourceControlSyncJobByIdProperties
Auto Trait Implementations§
impl Freeze for SourceControlSyncJobByIdProperties
impl RefUnwindSafe for SourceControlSyncJobByIdProperties
impl Send for SourceControlSyncJobByIdProperties
impl Sync for SourceControlSyncJobByIdProperties
impl Unpin for SourceControlSyncJobByIdProperties
impl UnwindSafe for SourceControlSyncJobByIdProperties
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