pub struct LicenseAssignmentState {
pub sku_id: String,
pub disabled_plans: Vec<String>,
pub assigned_by_group: String,
pub state: String,
pub error: String,
}
Fields§
§sku_id: String
§disabled_plans: Vec<String>
§assigned_by_group: String
§state: String
§error: String
Trait Implementations§
Source§impl Clone for LicenseAssignmentState
impl Clone for LicenseAssignmentState
Source§fn clone(&self) -> LicenseAssignmentState
fn clone(&self) -> LicenseAssignmentState
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 LicenseAssignmentState
impl Debug for LicenseAssignmentState
Source§impl<'de> Deserialize<'de> for LicenseAssignmentState
impl<'de> Deserialize<'de> for LicenseAssignmentState
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 LicenseAssignmentState
impl PartialEq for LicenseAssignmentState
Source§impl Serialize for LicenseAssignmentState
impl Serialize for LicenseAssignmentState
impl Eq for LicenseAssignmentState
impl StructuralPartialEq for LicenseAssignmentState
Auto Trait Implementations§
impl Freeze for LicenseAssignmentState
impl RefUnwindSafe for LicenseAssignmentState
impl Send for LicenseAssignmentState
impl Sync for LicenseAssignmentState
impl Unpin for LicenseAssignmentState
impl UnwindSafe for LicenseAssignmentState
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