[][src]Struct gh_auditor::AuditorBuilder

pub struct AuditorBuilder<'a> { /* fields omitted */ }

A builder struct for the Auditor. Allows you to configure GitHub organisation, underlying http client, audit configuration, and authentication token.

Methods

impl<'a> AuditorBuilder<'a>[src]

pub fn new<I: Into<String>>(org: I) -> Self[src]

Creates a default AuditorBuilder.

Example

use gh_auditor::{Auditor, AuditorBuilder};

let auditor: Auditor = AuditorBuilder::new("rust-lang").finish()?;

pub fn auth_key<I: Into<String>>(self, auth_key: I) -> Self[src]

Set the authentication key used for GitHub requests. Auditor requires at least admin:read access on the organisation. (Default: $GITHUB_AUTH_KEY environment variable)

pub fn client<I: Into<Cow<'a, Client>>>(self, client: I) -> Self[src]

Sets the http client, if desired. (Default: reqwest::Client::new())

pub fn config(self, config: Config) -> Self[src]

Sets the initial configuration. See Config for information on audit configuration. (Default: Config::default())

pub fn finish(self) -> Result<Auditor<'a>>[src]

Consume AuditorBuilder and construct Auditor with configuration or default values, and query for organisation information.

Errors

If no authentication key was not provided or invalid.

Auto Trait Implementations

impl<'a> !RefUnwindSafe for AuditorBuilder<'a>

impl<'a> Send for AuditorBuilder<'a>

impl<'a> Sync for AuditorBuilder<'a>

impl<'a> Unpin for AuditorBuilder<'a>

impl<'a> !UnwindSafe for AuditorBuilder<'a>

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> From<T> for T[src]

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

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

type Error = !

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.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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