Struct azure_devops_rust_api::member_entitlement_management::models::ServicePrincipalEntitlementOperationReference
source · pub struct ServicePrincipalEntitlementOperationReference {
pub operation_reference: OperationReference,
pub completed: Option<bool>,
pub have_results_succeeded: Option<bool>,
pub results: Vec<ServicePrincipalEntitlementOperationResult>,
}
Expand description
Fields§
§operation_reference: OperationReference
§completed: Option<bool>
Operation completed with success or failure.
have_results_succeeded: Option<bool>
True if all operations were successful.
results: Vec<ServicePrincipalEntitlementOperationResult>
List of results for each operation.
Implementations§
Trait Implementations§
source§impl Clone for ServicePrincipalEntitlementOperationReference
impl Clone for ServicePrincipalEntitlementOperationReference
source§fn clone(&self) -> ServicePrincipalEntitlementOperationReference
fn clone(&self) -> ServicePrincipalEntitlementOperationReference
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 Default for ServicePrincipalEntitlementOperationReference
impl Default for ServicePrincipalEntitlementOperationReference
source§fn default() -> ServicePrincipalEntitlementOperationReference
fn default() -> ServicePrincipalEntitlementOperationReference
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ServicePrincipalEntitlementOperationReference
impl<'de> Deserialize<'de> for ServicePrincipalEntitlementOperationReference
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 ServicePrincipalEntitlementOperationReference
impl PartialEq for ServicePrincipalEntitlementOperationReference
source§fn eq(&self, other: &ServicePrincipalEntitlementOperationReference) -> bool
fn eq(&self, other: &ServicePrincipalEntitlementOperationReference) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ServicePrincipalEntitlementOperationReference
Auto Trait Implementations§
impl RefUnwindSafe for ServicePrincipalEntitlementOperationReference
impl Send for ServicePrincipalEntitlementOperationReference
impl Sync for ServicePrincipalEntitlementOperationReference
impl Unpin for ServicePrincipalEntitlementOperationReference
impl UnwindSafe for ServicePrincipalEntitlementOperationReference
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