pub struct DtoWorkspaceInfo {Show 16 fields
pub file_list: Option<String>,
pub restore_id: Option<String>,
pub workspace: Option<String>,
pub duration: Option<i64>,
pub slug: Option<String>,
pub repo_url: Option<String>,
pub ssh: Option<bool>,
pub latest_sha: Option<String>,
pub status: Option<String>,
pub pipeline_id: Option<String>,
pub commit_count: Option<i64>,
pub create_time: Option<String>,
pub file_count: Option<i64>,
pub remote_stash_count: Option<i64>,
pub sn: Option<String>,
pub branch: Option<String>,
}
Expand description
DtoWorkspaceInfo 模型
Fields§
§file_list: Option<String>
§restore_id: Option<String>
§workspace: Option<String>
§duration: Option<i64>
§slug: Option<String>
§repo_url: Option<String>
§ssh: Option<bool>
§latest_sha: Option<String>
§status: Option<String>
§pipeline_id: Option<String>
§commit_count: Option<i64>
§create_time: Option<String>
§file_count: Option<i64>
§remote_stash_count: Option<i64>
§sn: Option<String>
§branch: Option<String>
Trait Implementations§
Source§impl Clone for DtoWorkspaceInfo
impl Clone for DtoWorkspaceInfo
Source§fn clone(&self) -> DtoWorkspaceInfo
fn clone(&self) -> DtoWorkspaceInfo
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 DtoWorkspaceInfo
impl Debug for DtoWorkspaceInfo
Source§impl<'de> Deserialize<'de> for DtoWorkspaceInfo
impl<'de> Deserialize<'de> for DtoWorkspaceInfo
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
Auto Trait Implementations§
impl Freeze for DtoWorkspaceInfo
impl RefUnwindSafe for DtoWorkspaceInfo
impl Send for DtoWorkspaceInfo
impl Sync for DtoWorkspaceInfo
impl Unpin for DtoWorkspaceInfo
impl UnwindSafe for DtoWorkspaceInfo
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