pub struct SupportTicketCreateOptions {Show 13 fields
pub category: String,
pub title: String,
pub description: String,
pub project_id: Option<String>,
pub environment: Option<String>,
pub runtime: Option<String>,
pub framework: Option<String>,
pub sdk_package: Option<String>,
pub sdk_version: Option<String>,
pub release: Option<String>,
pub trace_id: Option<String>,
pub event_id: Option<String>,
pub diagnostics: bool,
}Expand description
Fields accepted when creating a support ticket.
Fields§
§category: StringPublic support category.
title: StringConcise ticket title.
description: StringReproducible description supplied by the user.
project_id: Option<String>Optional project identifier.
environment: Option<String>Optional deployment environment.
runtime: Option<String>Optional runtime.
framework: Option<String>Optional framework.
sdk_package: Option<String>Optional SDK package.
sdk_version: Option<String>Optional SDK version.
release: Option<String>Optional release.
trace_id: Option<String>Optional trace identifier.
event_id: Option<String>Optional event identifier.
diagnostics: boolInclude bounded locally generated diagnostics.
Trait Implementations§
Source§impl Clone for SupportTicketCreateOptions
impl Clone for SupportTicketCreateOptions
Source§fn clone(&self) -> SupportTicketCreateOptions
fn clone(&self) -> SupportTicketCreateOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SupportTicketCreateOptions
impl Debug for SupportTicketCreateOptions
Source§impl Default for SupportTicketCreateOptions
impl Default for SupportTicketCreateOptions
Source§fn default() -> SupportTicketCreateOptions
fn default() -> SupportTicketCreateOptions
Returns the “default value” for a type. Read more
impl Eq for SupportTicketCreateOptions
impl StructuralPartialEq for SupportTicketCreateOptions
Auto Trait Implementations§
impl Freeze for SupportTicketCreateOptions
impl RefUnwindSafe for SupportTicketCreateOptions
impl Send for SupportTicketCreateOptions
impl Sync for SupportTicketCreateOptions
impl Unpin for SupportTicketCreateOptions
impl UnsafeUnpin for SupportTicketCreateOptions
impl UnwindSafe for SupportTicketCreateOptions
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.