Struct gitlab::webhooks::ProjectWikiHookAttrs [] [src]

pub struct ProjectWikiHookAttrs {
    pub web_url: String,
    pub git_ssh_url: String,
    pub git_http_url: String,
    pub path_with_namespace: String,
    pub default_branch: String,
}

Wiki project information exposed in hooks.

Fields

The URL for the project's homepage.

The URL to clone the repository over SSH.

The URL to clone the repository over HTTPS.

The path to the project's repository with its namespace.

The default branch for the project.

Trait Implementations

impl Debug for ProjectWikiHookAttrs
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ProjectWikiHookAttrs
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations