Struct azure_devops_rust_api::git::models::GitImportStatusDetail
source · pub struct GitImportStatusDetail {
pub all_steps: Vec<String>,
pub current_step: Option<i32>,
pub error_message: Option<String>,
}Expand description
Additional status information about an import request.
Fields§
§all_steps: Vec<String>All valid steps for the import process
current_step: Option<i32>Index into AllSteps for the current step
error_message: Option<String>Error message if the operation failed.
Implementations§
Trait Implementations§
source§impl Clone for GitImportStatusDetail
impl Clone for GitImportStatusDetail
source§fn clone(&self) -> GitImportStatusDetail
fn clone(&self) -> GitImportStatusDetail
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 GitImportStatusDetail
impl Debug for GitImportStatusDetail
source§impl Default for GitImportStatusDetail
impl Default for GitImportStatusDetail
source§fn default() -> GitImportStatusDetail
fn default() -> GitImportStatusDetail
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GitImportStatusDetail
impl<'de> Deserialize<'de> for GitImportStatusDetail
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 GitImportStatusDetail
impl PartialEq for GitImportStatusDetail
source§fn eq(&self, other: &GitImportStatusDetail) -> bool
fn eq(&self, other: &GitImportStatusDetail) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for GitImportStatusDetail
impl Serialize for GitImportStatusDetail
impl StructuralPartialEq for GitImportStatusDetail
Auto Trait Implementations§
impl Freeze for GitImportStatusDetail
impl RefUnwindSafe for GitImportStatusDetail
impl Send for GitImportStatusDetail
impl Sync for GitImportStatusDetail
impl Unpin for GitImportStatusDetail
impl UnwindSafe for GitImportStatusDetail
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