pub struct AddDealParticipantRequest {
pub person_id: i32,
}
Fields§
§person_id: i32
The ID of the person
Implementations§
Source§impl AddDealParticipantRequest
impl AddDealParticipantRequest
pub fn new(person_id: i32) -> AddDealParticipantRequest
Trait Implementations§
Source§impl Clone for AddDealParticipantRequest
impl Clone for AddDealParticipantRequest
Source§fn clone(&self) -> AddDealParticipantRequest
fn clone(&self) -> AddDealParticipantRequest
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 AddDealParticipantRequest
impl Debug for AddDealParticipantRequest
Source§impl<'de> Deserialize<'de> for AddDealParticipantRequest
impl<'de> Deserialize<'de> for AddDealParticipantRequest
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
impl StructuralPartialEq for AddDealParticipantRequest
Auto Trait Implementations§
impl Freeze for AddDealParticipantRequest
impl RefUnwindSafe for AddDealParticipantRequest
impl Send for AddDealParticipantRequest
impl Sync for AddDealParticipantRequest
impl Unpin for AddDealParticipantRequest
impl UnwindSafe for AddDealParticipantRequest
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