[][src]Struct df_st_core::git_issue::GitIssue

pub struct GitIssue<T> {
    pub title: String,
    pub message: String,
    pub labels: Vec<String>,
    pub debug_info_string: Option<String>,
    pub debug_info_json: Option<T>,
    pub add_steps: bool,
    pub ask_add_files: bool,
    pub include_backtrace: bool,
}

Fields

title: Stringmessage: Stringlabels: Vec<String>debug_info_string: Option<String>debug_info_json: Option<T>add_steps: boolask_add_files: boolinclude_backtrace: bool

Implementations

impl<T: Serialize + Clone> GitIssue<T>[src]

pub fn new() -> Self[src]

pub fn create_message(&self) -> String[src]

Trait Implementations

impl<T: Clone> Clone for GitIssue<T>[src]

impl<T: Debug> Debug for GitIssue<T>[src]

impl<T: Serialize> Default for GitIssue<T>[src]

impl<'de, T> Deserialize<'de> for GitIssue<T> where
    T: Deserialize<'de>, 
[src]

impl<T> Serialize for GitIssue<T> where
    T: Serialize
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for GitIssue<T> where
    T: RefUnwindSafe

impl<T> Send for GitIssue<T> where
    T: Send

impl<T> Sync for GitIssue<T> where
    T: Sync

impl<T> Unpin for GitIssue<T> where
    T: Unpin

impl<T> UnwindSafe for GitIssue<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> DynClone for T where
    T: Clone
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.