Struct octorust::codes_of_conduct::CodesOfConduct[][src]

pub struct CodesOfConduct {
    pub client: Client,
}

Fields

client: Client

Implementations

Get all codes of conduct.

This function performs a GET to the /codes_of_conduct endpoint.

FROM: https://docs.github.com/rest/reference/codes-of-conduct#get-all-codes-of-conduct

Get all codes of conduct.

This function performs a GET to the /codes_of_conduct endpoint.

As opposed to get_all_codes_of_conduct, this function returns all the pages of the request at once.

FROM: https://docs.github.com/rest/reference/codes-of-conduct#get-all-codes-of-conduct

Get a code of conduct.

This function performs a GET to the /codes_of_conduct/{key} endpoint.

FROM: https://docs.github.com/rest/reference/codes-of-conduct#get-a-code-of-conduct

Parameters:

  • key: &str

Get the code of conduct for a repository.

This function performs a GET to the /repos/{owner}/{repo}/community/code_of_conduct endpoint.

Returns the contents of the repository’s code of conduct file, if one is detected.

A code of conduct is detected if there is a file named CODE_OF_CONDUCT in the root directory of the repository. GitHub detects which code of conduct it is using fuzzy matching.

FROM: https://docs.github.com/rest/reference/codes-of-conduct#get-the-code-of-conduct-for-a-repository

Parameters:

  • owner: &str
  • repo: &str

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more