pub struct CustomDeploymentRuleApp {
pub id: i32,
pub slug: String,
pub integration_url: String,
pub node_id: String,
}
Expand description
CustomDeploymentRuleApp : A GitHub App that is providing a custom deployment protection rule.
Fields§
§id: i32
The unique identifier of the deployment protection rule integration.
slug: String
The slugified name of the deployment protection rule integration.
integration_url: String
The URL for the endpoint to get details about the app.
node_id: String
The node ID for the deployment protection rule integration.
Implementations§
Trait Implementations§
Source§impl Clone for CustomDeploymentRuleApp
impl Clone for CustomDeploymentRuleApp
Source§fn clone(&self) -> CustomDeploymentRuleApp
fn clone(&self) -> CustomDeploymentRuleApp
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 CustomDeploymentRuleApp
impl Debug for CustomDeploymentRuleApp
Source§impl Default for CustomDeploymentRuleApp
impl Default for CustomDeploymentRuleApp
Source§fn default() -> CustomDeploymentRuleApp
fn default() -> CustomDeploymentRuleApp
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomDeploymentRuleApp
impl<'de> Deserialize<'de> for CustomDeploymentRuleApp
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
Source§impl PartialEq for CustomDeploymentRuleApp
impl PartialEq for CustomDeploymentRuleApp
Source§impl Serialize for CustomDeploymentRuleApp
impl Serialize for CustomDeploymentRuleApp
impl StructuralPartialEq for CustomDeploymentRuleApp
Auto Trait Implementations§
impl Freeze for CustomDeploymentRuleApp
impl RefUnwindSafe for CustomDeploymentRuleApp
impl Send for CustomDeploymentRuleApp
impl Sync for CustomDeploymentRuleApp
impl Unpin for CustomDeploymentRuleApp
impl UnwindSafe for CustomDeploymentRuleApp
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