pub struct GitAutomationTargetBranchUpdateInput {
pub branch_pattern: Option<String>,
pub is_regex: Option<bool>,
}Fields§
§branch_pattern: Option<String>The target branch pattern.
is_regex: Option<bool>Whether the branch pattern is a regular expression.
Trait Implementations§
Source§impl Clone for GitAutomationTargetBranchUpdateInput
impl Clone for GitAutomationTargetBranchUpdateInput
Source§fn clone(&self) -> GitAutomationTargetBranchUpdateInput
fn clone(&self) -> GitAutomationTargetBranchUpdateInput
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 Default for GitAutomationTargetBranchUpdateInput
impl Default for GitAutomationTargetBranchUpdateInput
Source§fn default() -> GitAutomationTargetBranchUpdateInput
fn default() -> GitAutomationTargetBranchUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GitAutomationTargetBranchUpdateInput
impl<'de> Deserialize<'de> for GitAutomationTargetBranchUpdateInput
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 GitAutomationTargetBranchUpdateInput
impl RefUnwindSafe for GitAutomationTargetBranchUpdateInput
impl Send for GitAutomationTargetBranchUpdateInput
impl Sync for GitAutomationTargetBranchUpdateInput
impl Unpin for GitAutomationTargetBranchUpdateInput
impl UnwindSafe for GitAutomationTargetBranchUpdateInput
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