[−][src]Struct gitlab::types::ProjectHook
A web hook to notify of project events.
Fields
id: HookIdThe ID of the hook.
url: StringThe URL to contact.
created_at: DateTime<Utc>When the hook was created.
project_id: ProjectIdThe project associated with the hook.
push_events: boolWhether the hook is contacted for push events.
push_events_branch_filter: Option<String>Filter branches for which the hook is contacted for push events.
tag_push_events: boolWhether the hook is contacted for tag push events.
issues_events: boolWhether the hook is contacted for issue events.
confidential_issues_events: Option<bool>Whether the hook is contacted for confidential issue events.
merge_requests_events: boolWhether the hook is contacted for merge request events.
note_events: boolWhether the hook is contacted for note events.
confidential_note_events: Option<bool>Whether the hook is contacted for confidential note events.
repository_update_events: boolWhether the hook is contacted for repository update events.
enable_ssl_verification: boolWhether the communication with the hook is verified using TLS certificates.
job_events: boolWhether the hook is contacted for job events.
pipeline_events: boolWhether the hook is contacted for pipeline events.
wiki_page_events: boolWhether the hook is contacted for wiki page events.
Trait Implementations
impl From<ProjectHook> for Hook[src]
fn from(hook: ProjectHook) -> Self[src]
impl Clone for ProjectHook[src]
fn clone(&self) -> ProjectHook[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for ProjectHook[src]
impl Serialize for ProjectHook[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl<'de> Deserialize<'de> for ProjectHook[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for ProjectHook
impl Sync for ProjectHook
impl Unpin for ProjectHook
impl UnwindSafe for ProjectHook
impl RefUnwindSafe for ProjectHook
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> DeserializeOwned for T where
T: Deserialize<'de>, [src]
T: Deserialize<'de>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
U: TryFrom<T>,