pub struct GitlabPipelineEvent {
pub object_kind: Option<String>,
pub object_attributes: Option<GitlabPipelineAttributes>,
pub project: Option<GitlabProject>,
pub builds: Option<Vec<GitlabBuild>>,
}Expand description
GitLab CI webhook payload
Fields§
§object_kind: Option<String>§object_attributes: Option<GitlabPipelineAttributes>§project: Option<GitlabProject>§builds: Option<Vec<GitlabBuild>>Trait Implementations§
Source§impl Clone for GitlabPipelineEvent
impl Clone for GitlabPipelineEvent
Source§fn clone(&self) -> GitlabPipelineEvent
fn clone(&self) -> GitlabPipelineEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GitlabPipelineEvent
impl Debug for GitlabPipelineEvent
Source§impl<'de> Deserialize<'de> for GitlabPipelineEvent
impl<'de> Deserialize<'de> for GitlabPipelineEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GitlabPipelineEvent
impl RefUnwindSafe for GitlabPipelineEvent
impl Send for GitlabPipelineEvent
impl Sync for GitlabPipelineEvent
impl Unpin for GitlabPipelineEvent
impl UnsafeUnpin for GitlabPipelineEvent
impl UnwindSafe for GitlabPipelineEvent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more