pub struct UpdateProjectEmailParams {
pub project_id: i64,
pub project_email_address: ProjectEmailAddress,
}
Expand description
struct for passing parameters to the method update_project_email
Fields§
§project_id: i64
The project ID.
project_email_address: ProjectEmailAddress
The project’s sender email address to be set.
Trait Implementations§
Source§impl Clone for UpdateProjectEmailParams
impl Clone for UpdateProjectEmailParams
Source§fn clone(&self) -> UpdateProjectEmailParams
fn clone(&self) -> UpdateProjectEmailParams
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 UpdateProjectEmailParams
impl Debug for UpdateProjectEmailParams
Source§impl Default for UpdateProjectEmailParams
impl Default for UpdateProjectEmailParams
Source§fn default() -> UpdateProjectEmailParams
fn default() -> UpdateProjectEmailParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UpdateProjectEmailParams
impl RefUnwindSafe for UpdateProjectEmailParams
impl Send for UpdateProjectEmailParams
impl Sync for UpdateProjectEmailParams
impl Unpin for UpdateProjectEmailParams
impl UnwindSafe for UpdateProjectEmailParams
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