pub struct SourceControlSyncJobStreamByIdProperties {
pub source_control_sync_job_stream_id: Option<String>,
pub summary: Option<String>,
pub time: Option<OffsetDateTime>,
pub stream_type: Option<StreamType>,
pub stream_text: Option<String>,
pub value: Option<Value>,
}Expand description
Definition of source control sync job stream by id properties.
Fields§
§source_control_sync_job_stream_id: Option<String>The sync job stream id.
summary: Option<String>The summary of the sync job stream.
time: Option<OffsetDateTime>The time of the sync job stream.
stream_type: Option<StreamType>The type of the sync job stream.
stream_text: Option<String>The text of the sync job stream.
value: Option<Value>The values of the job stream.
Implementations§
Trait Implementations§
Source§impl Clone for SourceControlSyncJobStreamByIdProperties
impl Clone for SourceControlSyncJobStreamByIdProperties
Source§fn clone(&self) -> SourceControlSyncJobStreamByIdProperties
fn clone(&self) -> SourceControlSyncJobStreamByIdProperties
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 SourceControlSyncJobStreamByIdProperties
impl Default for SourceControlSyncJobStreamByIdProperties
Source§fn default() -> SourceControlSyncJobStreamByIdProperties
fn default() -> SourceControlSyncJobStreamByIdProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SourceControlSyncJobStreamByIdProperties
impl<'de> Deserialize<'de> for SourceControlSyncJobStreamByIdProperties
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 SourceControlSyncJobStreamByIdProperties
impl PartialEq for SourceControlSyncJobStreamByIdProperties
Source§fn eq(&self, other: &SourceControlSyncJobStreamByIdProperties) -> bool
fn eq(&self, other: &SourceControlSyncJobStreamByIdProperties) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SourceControlSyncJobStreamByIdProperties
Auto Trait Implementations§
impl Freeze for SourceControlSyncJobStreamByIdProperties
impl RefUnwindSafe for SourceControlSyncJobStreamByIdProperties
impl Send for SourceControlSyncJobStreamByIdProperties
impl Sync for SourceControlSyncJobStreamByIdProperties
impl Unpin for SourceControlSyncJobStreamByIdProperties
impl UnwindSafe for SourceControlSyncJobStreamByIdProperties
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