pub struct IntegrationRequestInput {
pub email: Option<String>,
pub name: Option<String>,
}Fields§
§email: Option<String>Email associated with the request.
name: Option<String>Name of the requested integration.
Trait Implementations§
Source§impl Clone for IntegrationRequestInput
impl Clone for IntegrationRequestInput
Source§fn clone(&self) -> IntegrationRequestInput
fn clone(&self) -> IntegrationRequestInput
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 IntegrationRequestInput
impl Debug for IntegrationRequestInput
Source§impl Default for IntegrationRequestInput
impl Default for IntegrationRequestInput
Source§fn default() -> IntegrationRequestInput
fn default() -> IntegrationRequestInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IntegrationRequestInput
impl<'de> Deserialize<'de> for IntegrationRequestInput
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
Auto Trait Implementations§
impl Freeze for IntegrationRequestInput
impl RefUnwindSafe for IntegrationRequestInput
impl Send for IntegrationRequestInput
impl Sync for IntegrationRequestInput
impl Unpin for IntegrationRequestInput
impl UnwindSafe for IntegrationRequestInput
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