pub struct CheckAutomatedSecurityFixes {
pub enabled: bool,
pub paused: bool,
}
Expand description
CheckAutomatedSecurityFixes : Check Automated Security Fixes
Fields§
§enabled: bool
Whether automated security fixes are enabled for the repository.
paused: bool
Whether automated security fixes are paused for the repository.
Implementations§
Source§impl CheckAutomatedSecurityFixes
impl CheckAutomatedSecurityFixes
Sourcepub fn new(enabled: bool, paused: bool) -> CheckAutomatedSecurityFixes
pub fn new(enabled: bool, paused: bool) -> CheckAutomatedSecurityFixes
Check Automated Security Fixes
Trait Implementations§
Source§impl Clone for CheckAutomatedSecurityFixes
impl Clone for CheckAutomatedSecurityFixes
Source§fn clone(&self) -> CheckAutomatedSecurityFixes
fn clone(&self) -> CheckAutomatedSecurityFixes
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 CheckAutomatedSecurityFixes
impl Debug for CheckAutomatedSecurityFixes
Source§impl Default for CheckAutomatedSecurityFixes
impl Default for CheckAutomatedSecurityFixes
Source§fn default() -> CheckAutomatedSecurityFixes
fn default() -> CheckAutomatedSecurityFixes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CheckAutomatedSecurityFixes
impl<'de> Deserialize<'de> for CheckAutomatedSecurityFixes
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 CheckAutomatedSecurityFixes
Auto Trait Implementations§
impl Freeze for CheckAutomatedSecurityFixes
impl RefUnwindSafe for CheckAutomatedSecurityFixes
impl Send for CheckAutomatedSecurityFixes
impl Sync for CheckAutomatedSecurityFixes
impl Unpin for CheckAutomatedSecurityFixes
impl UnwindSafe for CheckAutomatedSecurityFixes
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