pub struct TeamsAsyncOperation {
pub operation_type: TeamsAsyncOperationType,
pub created_date_time: String,
pub status: TeamsAsyncOperationStatus,
pub last_action_date_time: String,
pub attempts_count: i32,
pub target_resource_id: String,
pub target_resource_location: String,
pub error: OperationError,
}
Fields§
§operation_type: TeamsAsyncOperationType
§created_date_time: String
§status: TeamsAsyncOperationStatus
§last_action_date_time: String
§attempts_count: i32
§target_resource_id: String
§target_resource_location: String
§error: OperationError
Trait Implementations§
Source§impl Clone for TeamsAsyncOperation
impl Clone for TeamsAsyncOperation
Source§fn clone(&self) -> TeamsAsyncOperation
fn clone(&self) -> TeamsAsyncOperation
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 TeamsAsyncOperation
impl Debug for TeamsAsyncOperation
Source§impl<'de> Deserialize<'de> for TeamsAsyncOperation
impl<'de> Deserialize<'de> for TeamsAsyncOperation
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 TeamsAsyncOperation
impl PartialEq for TeamsAsyncOperation
Source§impl Serialize for TeamsAsyncOperation
impl Serialize for TeamsAsyncOperation
impl Eq for TeamsAsyncOperation
impl StructuralPartialEq for TeamsAsyncOperation
Auto Trait Implementations§
impl Freeze for TeamsAsyncOperation
impl RefUnwindSafe for TeamsAsyncOperation
impl Send for TeamsAsyncOperation
impl Sync for TeamsAsyncOperation
impl Unpin for TeamsAsyncOperation
impl UnwindSafe for TeamsAsyncOperation
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