pub struct Forks {
pub allow_full_access_token: Option<bool>,
pub allow_secrets: Option<bool>,
pub enabled: Option<bool>,
}Expand description
Represents the ability to build forks of the selected repository.
Fields§
§allow_full_access_token: Option<bool>Indicates whether a build should allow a full access token or scope it down when building forks of the selected repository.
allow_secrets: Option<bool>Indicates whether a build should use secrets when building forks of the selected repository.
enabled: Option<bool>Indicates whether the trigger should queue builds for forks of the selected repository.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Forks
impl<'de> Deserialize<'de> for Forks
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 Forks
Auto Trait Implementations§
impl Freeze for Forks
impl RefUnwindSafe for Forks
impl Send for Forks
impl Sync for Forks
impl Unpin for Forks
impl UnwindSafe for Forks
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