pub struct MemberEntitlementsResponseBase {
pub is_success: Option<bool>,
pub member_entitlement: Option<MemberEntitlement>,
}Fields§
§is_success: Option<bool>True if all operations were successful.
member_entitlement: Option<MemberEntitlement>Deprecated: Use UserEntitlement instead
Implementations§
Trait Implementations§
Source§impl Clone for MemberEntitlementsResponseBase
impl Clone for MemberEntitlementsResponseBase
Source§fn clone(&self) -> MemberEntitlementsResponseBase
fn clone(&self) -> MemberEntitlementsResponseBase
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 MemberEntitlementsResponseBase
impl Default for MemberEntitlementsResponseBase
Source§fn default() -> MemberEntitlementsResponseBase
fn default() -> MemberEntitlementsResponseBase
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MemberEntitlementsResponseBase
impl<'de> Deserialize<'de> for MemberEntitlementsResponseBase
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 MemberEntitlementsResponseBase
impl PartialEq for MemberEntitlementsResponseBase
Source§fn eq(&self, other: &MemberEntitlementsResponseBase) -> bool
fn eq(&self, other: &MemberEntitlementsResponseBase) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MemberEntitlementsResponseBase
Auto Trait Implementations§
impl Freeze for MemberEntitlementsResponseBase
impl RefUnwindSafe for MemberEntitlementsResponseBase
impl Send for MemberEntitlementsResponseBase
impl Sync for MemberEntitlementsResponseBase
impl Unpin for MemberEntitlementsResponseBase
impl UnwindSafe for MemberEntitlementsResponseBase
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<D> DeserializeWith<JsonFormat> for Dwhere
D: DeserializeOwned,
impl<D> DeserializeWith<JsonFormat> for Dwhere
D: DeserializeOwned,
Source§fn deserialize_with(body: ResponseBody) -> Result<D, Error>
fn deserialize_with(body: ResponseBody) -> Result<D, Error>
Deserialize the response body using the specified format. Read more