pub struct ReleaseDebugSinkInput {
pub inspected_shas: Option<Vec<String>>,
pub issues: Option<Value>,
pub pull_requests: Option<Vec<Value>>,
pub include_paths: Option<Vec<String>>,
}Expand description
Debug sink for release creation diagnostics.
Fields§
§inspected_shas: Option<Vec<String>>List of commit SHAs that were inspected.
issues: Option<Value>Map of issue identifiers to their source information.
pull_requests: Option<Vec<Value>>Pull request debug information.
include_paths: Option<Vec<String>>List of paths applied during commit scanning.
Trait Implementations§
Source§impl Clone for ReleaseDebugSinkInput
impl Clone for ReleaseDebugSinkInput
Source§fn clone(&self) -> ReleaseDebugSinkInput
fn clone(&self) -> ReleaseDebugSinkInput
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 ReleaseDebugSinkInput
impl Debug for ReleaseDebugSinkInput
Source§impl Default for ReleaseDebugSinkInput
impl Default for ReleaseDebugSinkInput
Source§fn default() -> ReleaseDebugSinkInput
fn default() -> ReleaseDebugSinkInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReleaseDebugSinkInput
impl<'de> Deserialize<'de> for ReleaseDebugSinkInput
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
Auto Trait Implementations§
impl Freeze for ReleaseDebugSinkInput
impl RefUnwindSafe for ReleaseDebugSinkInput
impl Send for ReleaseDebugSinkInput
impl Sync for ReleaseDebugSinkInput
impl Unpin for ReleaseDebugSinkInput
impl UnwindSafe for ReleaseDebugSinkInput
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