[][src]Struct gitlab::webhooks::SnippetHookAttrs

pub struct SnippetHookAttrs {
    pub title: String,
    pub content: String,
    pub author_id: UserId,
    pub project_id: Option<ProjectId>,
    pub created_at: HookDate,
    pub updated_at: HookDate,
    pub file_name: String,
    pub type_: SnippetType,
    pub visibility_level: u64,
}

Snippet information exposed in hooks.

Fields

title: String

The title of the snippet.

content: String

The content of the snippet.

author_id: UserId

The author of the snippet.

project_id: Option<ProjectId>

The project the snippet belongs to.

created_at: HookDate

When the snippet was created.

updated_at: HookDate

When the snippet was last updated.

file_name: String

The name of the snippet.

type_: SnippetType

The type of the snippet.

visibility_level: u64

The visibility of the snippet.

Trait Implementations

impl Clone for SnippetHookAttrs[src]

impl Debug for SnippetHookAttrs[src]

impl<'de> Deserialize<'de> for SnippetHookAttrs[src]

impl Serialize for SnippetHookAttrs[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

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.