pub struct RepositoryOperationStatus {
pub scope: OperationScope,
pub kind: OperationKind,
pub in_progress: bool,
pub state: String,
pub message: String,
pub next_action: String,
}Fields§
§scope: OperationScope§kind: OperationKind§in_progress: bool§state: String§message: String§next_action: StringTrait Implementations§
Source§impl Clone for RepositoryOperationStatus
impl Clone for RepositoryOperationStatus
Source§fn clone(&self) -> RepositoryOperationStatus
fn clone(&self) -> RepositoryOperationStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RepositoryOperationStatus
impl Debug for RepositoryOperationStatus
Source§impl<'de> Deserialize<'de> for RepositoryOperationStatus
impl<'de> Deserialize<'de> for RepositoryOperationStatus
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 RepositoryOperationStatus
impl RefUnwindSafe for RepositoryOperationStatus
impl Send for RepositoryOperationStatus
impl Sync for RepositoryOperationStatus
impl Unpin for RepositoryOperationStatus
impl UnsafeUnpin for RepositoryOperationStatus
impl UnwindSafe for RepositoryOperationStatus
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