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