Struct gitlab::types::ProjectSnippet [] [src]

pub struct ProjectSnippet {
    pub id: SnippetId,
    pub title: String,
    pub file_name: String,
    pub author: UserBasic,
    pub updated_at: DateTime<UTC>,
    pub created_at: DateTime<UTC>,
    pub expires_at: Option<DateTime<UTC>>,
    pub web_url: String,
}

A project-specific snippet.

Fields

The ID of the snippet.

The title of the snippet.

The name of the snippet.

The author of the snippet.

When the snippet was last updated.

When the snippet was created.

When the snippet was created.

The URL of the snippet.

Trait Implementations

impl Debug for ProjectSnippet
[src]

Formats the value using the given formatter.

impl Clone for ProjectSnippet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more