pub struct Parameters {
pub profile: ProfileSnapshot,
pub git: GitWorkflow,
pub capabilities: CapabilityRequests,
pub repo: String,
pub security_contact: String,
pub security_response: String,
pub required_check: String,
pub required_workflow: String,
}Expand description
The resolved landing parameters, stated whole.
Fields§
§profile: ProfileSnapshotWhat the project is.
git: GitWorkflowHow topic branches reach the trunk.
capabilities: CapabilityRequestsWhich optional products the target requested.
repo: StringThe project path on the forge, empty where the project has none.
security_contact: StringThe security contact, empty for the forge’s own wording.
security_response: StringThe acknowledgment window.
required_check: StringThe check the release gate believes, empty where nothing answered it.
required_workflow: StringThe workflow whose completion wakes the release gate, empty where nothing answered it.
Trait Implementations§
Source§impl Clone for Parameters
impl Clone for Parameters
Source§impl Debug for Parameters
impl Debug for Parameters
Source§impl<'de> Deserialize<'de> for Parameters
impl<'de> Deserialize<'de> for Parameters
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 From<&Params> for Parameters
impl From<&Params> for Parameters
Auto Trait Implementations§
impl Freeze for Parameters
impl RefUnwindSafe for Parameters
impl Send for Parameters
impl Sync for Parameters
impl Unpin for Parameters
impl UnsafeUnpin for Parameters
impl UnwindSafe for Parameters
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