Struct azure_devops_rust_api::member_entitlement_management::models::UserEntitlementOperationResult
source · pub struct UserEntitlementOperationResult {
pub errors: Vec<Value>,
pub is_success: Option<bool>,
pub result: Option<UserEntitlement>,
pub user_id: Option<String>,
}Expand description
Fields§
§errors: Vec<Value>List of error codes paired with their corresponding error messages.
is_success: Option<bool>Success status of the operation.
result: Option<UserEntitlement>A user entity with additional properties including their license, extensions, and project membership
user_id: Option<String>Identifier of the Member being acted upon.
Implementations§
Trait Implementations§
source§impl Clone for UserEntitlementOperationResult
impl Clone for UserEntitlementOperationResult
source§fn clone(&self) -> UserEntitlementOperationResult
fn clone(&self) -> UserEntitlementOperationResult
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 UserEntitlementOperationResult
impl Default for UserEntitlementOperationResult
source§fn default() -> UserEntitlementOperationResult
fn default() -> UserEntitlementOperationResult
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for UserEntitlementOperationResult
impl<'de> Deserialize<'de> for UserEntitlementOperationResult
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<UserEntitlementOperationResult> for UserEntitlementOperationResult
impl PartialEq<UserEntitlementOperationResult> for UserEntitlementOperationResult
source§fn eq(&self, other: &UserEntitlementOperationResult) -> bool
fn eq(&self, other: &UserEntitlementOperationResult) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UserEntitlementOperationResult
Auto Trait Implementations§
impl RefUnwindSafe for UserEntitlementOperationResult
impl Send for UserEntitlementOperationResult
impl Sync for UserEntitlementOperationResult
impl Unpin for UserEntitlementOperationResult
impl UnwindSafe for UserEntitlementOperationResult
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