Struct azure_devops_rust_api::artifacts::models::OperationReference
source · pub struct OperationReference {
pub id: Option<String>,
pub plugin_id: Option<String>,
pub status: Option<Status>,
pub url: Option<String>,
}
Expand description
Reference for an async operation.
Fields§
§id: Option<String>
Unique identifier for the operation.
plugin_id: Option<String>
Unique identifier for the plugin.
status: Option<Status>
The current status of the operation.
url: Option<String>
URL to get the full operation object.
Implementations§
Trait Implementations§
source§impl Clone for OperationReference
impl Clone for OperationReference
source§fn clone(&self) -> OperationReference
fn clone(&self) -> OperationReference
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 OperationReference
impl Debug for OperationReference
source§impl Default for OperationReference
impl Default for OperationReference
source§fn default() -> OperationReference
fn default() -> OperationReference
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for OperationReference
impl<'de> Deserialize<'de> for OperationReference
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 OperationReference
impl PartialEq for OperationReference
source§fn eq(&self, other: &OperationReference) -> bool
fn eq(&self, other: &OperationReference) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for OperationReference
impl Serialize for OperationReference
impl StructuralPartialEq for OperationReference
Auto Trait Implementations§
impl Freeze for OperationReference
impl RefUnwindSafe for OperationReference
impl Send for OperationReference
impl Sync for OperationReference
impl Unpin for OperationReference
impl UnwindSafe for OperationReference
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