pub struct GitLabRule {
pub condition: Option<String>,
pub when: Option<String>,
pub changes: Option<Vec<String>>,
pub exists: Option<Vec<String>>,
pub allow_failure: Option<bool>,
}Fields§
§condition: Option<String>§when: Option<String>§changes: Option<Vec<String>>§exists: Option<Vec<String>>§allow_failure: Option<bool>Trait Implementations§
Source§impl Clone for GitLabRule
impl Clone for GitLabRule
Source§fn clone(&self) -> GitLabRule
fn clone(&self) -> GitLabRule
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 GitLabRule
impl Debug for GitLabRule
Source§impl<'de> Deserialize<'de> for GitLabRule
impl<'de> Deserialize<'de> for GitLabRule
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 GitLabRule
impl RefUnwindSafe for GitLabRule
impl Send for GitLabRule
impl Sync for GitLabRule
impl Unpin for GitLabRule
impl UnsafeUnpin for GitLabRule
impl UnwindSafe for GitLabRule
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