pub struct OrganizationSponsorshipResponseModel {
pub sponsoring_organization_user_id: Option<Uuid>,
pub friendly_name: Option<String>,
pub offered_to_email: Option<String>,
pub plan_sponsorship_type: Option<PlanSponsorshipType>,
pub last_sync_date: Option<String>,
pub valid_until: Option<String>,
pub to_delete: Option<bool>,
pub cloud_sponsorship_removed: Option<bool>,
}
Fields§
§sponsoring_organization_user_id: Option<Uuid>
§friendly_name: Option<String>
§offered_to_email: Option<String>
§plan_sponsorship_type: Option<PlanSponsorshipType>
§last_sync_date: Option<String>
§valid_until: Option<String>
§to_delete: Option<bool>
§cloud_sponsorship_removed: Option<bool>
Implementations§
Trait Implementations§
Source§impl Clone for OrganizationSponsorshipResponseModel
impl Clone for OrganizationSponsorshipResponseModel
Source§fn clone(&self) -> OrganizationSponsorshipResponseModel
fn clone(&self) -> OrganizationSponsorshipResponseModel
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 OrganizationSponsorshipResponseModel
impl Default for OrganizationSponsorshipResponseModel
Source§fn default() -> OrganizationSponsorshipResponseModel
fn default() -> OrganizationSponsorshipResponseModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrganizationSponsorshipResponseModel
impl<'de> Deserialize<'de> for OrganizationSponsorshipResponseModel
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 OrganizationSponsorshipResponseModel
impl PartialEq for OrganizationSponsorshipResponseModel
Source§fn eq(&self, other: &OrganizationSponsorshipResponseModel) -> bool
fn eq(&self, other: &OrganizationSponsorshipResponseModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for OrganizationSponsorshipResponseModel
Auto Trait Implementations§
impl Freeze for OrganizationSponsorshipResponseModel
impl RefUnwindSafe for OrganizationSponsorshipResponseModel
impl Send for OrganizationSponsorshipResponseModel
impl Sync for OrganizationSponsorshipResponseModel
impl Unpin for OrganizationSponsorshipResponseModel
impl UnwindSafe for OrganizationSponsorshipResponseModel
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