pub struct AccountEntitlements {
pub principal_id: Option<String>,
pub tenant_id: Option<String>,
pub workspace_id: Option<String>,
pub plan: Option<Option<AccountEntitlementsPlan>>,
pub plan_alias: Option<String>,
pub capabilities: Option<Box<EntitlementCapabilities>>,
pub limits: Option<Box<EntitlementLimits>>,
pub source: Option<String>,
pub updated_at: Option<String>,
}Fields§
§principal_id: Option<String>§tenant_id: Option<String>§workspace_id: Option<String>§plan: Option<Option<AccountEntitlementsPlan>>§plan_alias: Option<String>§capabilities: Option<Box<EntitlementCapabilities>>§limits: Option<Box<EntitlementLimits>>§source: Option<String>§updated_at: Option<String>Implementations§
Source§impl AccountEntitlements
impl AccountEntitlements
pub fn new() -> AccountEntitlements
Trait Implementations§
Source§impl Clone for AccountEntitlements
impl Clone for AccountEntitlements
Source§fn clone(&self) -> AccountEntitlements
fn clone(&self) -> AccountEntitlements
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AccountEntitlements
impl Debug for AccountEntitlements
Source§impl Default for AccountEntitlements
impl Default for AccountEntitlements
Source§fn default() -> AccountEntitlements
fn default() -> AccountEntitlements
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountEntitlements
impl<'de> Deserialize<'de> for AccountEntitlements
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 AccountEntitlements
impl PartialEq for AccountEntitlements
Source§fn eq(&self, other: &AccountEntitlements) -> bool
fn eq(&self, other: &AccountEntitlements) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AccountEntitlements
impl Serialize for AccountEntitlements
impl StructuralPartialEq for AccountEntitlements
Auto Trait Implementations§
impl Freeze for AccountEntitlements
impl RefUnwindSafe for AccountEntitlements
impl Send for AccountEntitlements
impl Sync for AccountEntitlements
impl Unpin for AccountEntitlements
impl UnsafeUnpin for AccountEntitlements
impl UnwindSafe for AccountEntitlements
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