pub struct ContactCreateInput {
pub type: Option<String>,
pub message: Option<String>,
pub operating_system: Option<String>,
pub browser: Option<String>,
pub device: Option<String>,
pub client_version: Option<String>,
pub disappointment_rating: Option<i64>,
}Fields§
§type: Option<String>The type of support contact.
message: Option<String>The message the user sent.
operating_system: Option<String>User’s operating system.
browser: Option<String>User’s browser information.
device: Option<String>User’s device information.
client_version: Option<String>User’s Linear client information.
disappointment_rating: Option<i64>How disappointed the user would be if they could no longer use Linear.
Trait Implementations§
Source§impl Clone for ContactCreateInput
impl Clone for ContactCreateInput
Source§fn clone(&self) -> ContactCreateInput
fn clone(&self) -> ContactCreateInput
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 ContactCreateInput
impl Debug for ContactCreateInput
Source§impl Default for ContactCreateInput
impl Default for ContactCreateInput
Source§fn default() -> ContactCreateInput
fn default() -> ContactCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContactCreateInput
impl<'de> Deserialize<'de> for ContactCreateInput
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 ContactCreateInput
impl RefUnwindSafe for ContactCreateInput
impl Send for ContactCreateInput
impl Sync for ContactCreateInput
impl Unpin for ContactCreateInput
impl UnwindSafe for ContactCreateInput
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