[][src]Struct dumplingh::Options

pub struct Options {
    pub slug: RepoSlug,
    pub out_issues: Option<(String, PathBuf)>,
    pub out_pull_requests: Option<(String, PathBuf)>,
    pub out_labels: Option<(String, PathBuf)>,
    pub out_milestones: Option<(String, PathBuf)>,
    pub out_projects: Option<(String, PathBuf)>,
    pub out_comments: Option<(String, PathBuf)>,
    pub compact: bool,
    pub github_token: Option<String>,
}

Representation of the application's all configurable values.

Fields

Repository slug to export.

File to write issues to, if any.

Default: "./<slug>-issues.json".

File to write pull requests to, if any.

Default: "./<slug>-pulls.json".

File to write labels to, if any.

Default: "./<slug>-labels.json".

File to write milestones to, if any.

Default: "./<slug>-milestones.json".

File to write projects to, if any.

Default: "./<slug>-projects.json".

Directory to write comments to, if any.

Default: "./<slug>-comments/".

Whether to compact-print, as opposed to pretty-print, exported JSON.

Default: false.

GitHub OAuth2 token.

Required for: projects.

Default: None.

Methods

impl Options
[src]

Parse env-wide command-line arguments into an Options instance

Trait Implementations

impl Clone for Options
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for Options
[src]

impl PartialOrd<Options> for Options
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialEq<Options> for Options
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Ord for Options
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl Hash for Options
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for Options
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Options

impl Sync for Options

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

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

Performs the conversion.

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

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Erased for T
[src]