gps 7.3.3

Official CLI & library for Git Patch Stack
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use super::super::super::utils;
use serde::Deserialize;
use std::option::Option;

#[derive(Debug, Deserialize, Clone, Default)]
pub struct RequestReviewConfigDto {
    pub verify_isolation: Option<bool>,
}

impl utils::Mergable for RequestReviewConfigDto {
    /// Merge the provided b with self overriding with any present values
    fn merge(&self, b: &Self) -> Self {
        RequestReviewConfigDto {
            verify_isolation: b.verify_isolation.or(self.verify_isolation),
        }
    }
}