pub struct ApplicationEntitlementRequest {
pub name: String,
pub app: Uuid,
pub attributes: Option<HashMap<String, Value>>,
}Expand description
ApplicationEntitlementRequest : ApplicationEntitlement Serializer
Fields§
§name: String§app: Uuid§attributes: Option<HashMap<String, Value>>Implementations§
Source§impl ApplicationEntitlementRequest
impl ApplicationEntitlementRequest
Sourcepub fn new(name: String, app: Uuid) -> ApplicationEntitlementRequest
pub fn new(name: String, app: Uuid) -> ApplicationEntitlementRequest
ApplicationEntitlement Serializer
Trait Implementations§
Source§impl Clone for ApplicationEntitlementRequest
impl Clone for ApplicationEntitlementRequest
Source§fn clone(&self) -> ApplicationEntitlementRequest
fn clone(&self) -> ApplicationEntitlementRequest
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 Default for ApplicationEntitlementRequest
impl Default for ApplicationEntitlementRequest
Source§fn default() -> ApplicationEntitlementRequest
fn default() -> ApplicationEntitlementRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationEntitlementRequest
impl<'de> Deserialize<'de> for ApplicationEntitlementRequest
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 ApplicationEntitlementRequest
impl PartialEq for ApplicationEntitlementRequest
Source§fn eq(&self, other: &ApplicationEntitlementRequest) -> bool
fn eq(&self, other: &ApplicationEntitlementRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ApplicationEntitlementRequest
Auto Trait Implementations§
impl Freeze for ApplicationEntitlementRequest
impl RefUnwindSafe for ApplicationEntitlementRequest
impl Send for ApplicationEntitlementRequest
impl Sync for ApplicationEntitlementRequest
impl Unpin for ApplicationEntitlementRequest
impl UnsafeUnpin for ApplicationEntitlementRequest
impl UnwindSafe for ApplicationEntitlementRequest
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