pub struct GetGitSyncDeployMode200Response {
pub configured: bool,
pub deploy_on_push: bool,
}Fields§
§configured: boolAt least one git-sync repository is configured.
deploy_on_push: boolTrue means a git push is confirmed to deploy via auto-pull: exactly one licensed, deliverable repository tracks the branch. False is not confirmed rather than a definite no — it also covers unlicensed, ambiguous (several repos track it), and conservative false-negatives; determine the deploy path another way (CI git push, or wmill sync push).
Implementations§
Source§impl GetGitSyncDeployMode200Response
impl GetGitSyncDeployMode200Response
pub fn new( configured: bool, deploy_on_push: bool, ) -> GetGitSyncDeployMode200Response
Trait Implementations§
Source§impl Clone for GetGitSyncDeployMode200Response
impl Clone for GetGitSyncDeployMode200Response
Source§fn clone(&self) -> GetGitSyncDeployMode200Response
fn clone(&self) -> GetGitSyncDeployMode200Response
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetGitSyncDeployMode200Response
impl Default for GetGitSyncDeployMode200Response
Source§fn default() -> GetGitSyncDeployMode200Response
fn default() -> GetGitSyncDeployMode200Response
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetGitSyncDeployMode200Response
impl<'de> Deserialize<'de> for GetGitSyncDeployMode200Response
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
impl StructuralPartialEq for GetGitSyncDeployMode200Response
Auto Trait Implementations§
impl Freeze for GetGitSyncDeployMode200Response
impl RefUnwindSafe for GetGitSyncDeployMode200Response
impl Send for GetGitSyncDeployMode200Response
impl Sync for GetGitSyncDeployMode200Response
impl Unpin for GetGitSyncDeployMode200Response
impl UnsafeUnpin for GetGitSyncDeployMode200Response
impl UnwindSafe for GetGitSyncDeployMode200Response
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