pub struct DevProgramApplyRequest {
pub use_case: String,
pub company: Option<String>,
pub expected_usd: Option<f64>,
pub website: Option<String>,
}Expand description
Request to apply for the developer program.
Fields§
§use_case: StringDescription of the intended use case.
company: Option<String>Company name (optional).
expected_usd: Option<f64>Expected monthly spend in USD (optional).
website: Option<String>Website URL (optional).
Trait Implementations§
Source§impl Clone for DevProgramApplyRequest
impl Clone for DevProgramApplyRequest
Source§fn clone(&self) -> DevProgramApplyRequest
fn clone(&self) -> DevProgramApplyRequest
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 Debug for DevProgramApplyRequest
impl Debug for DevProgramApplyRequest
Auto Trait Implementations§
impl Freeze for DevProgramApplyRequest
impl RefUnwindSafe for DevProgramApplyRequest
impl Send for DevProgramApplyRequest
impl Sync for DevProgramApplyRequest
impl Unpin for DevProgramApplyRequest
impl UnsafeUnpin for DevProgramApplyRequest
impl UnwindSafe for DevProgramApplyRequest
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