pub struct ImpactDetail {
pub project: String,
pub reason: String,
pub required_actions: Vec<String>,
}Expand description
Details about how a change impacts a specific project
Fields§
§project: StringName of the affected project
reason: StringReason for the impact
required_actions: Vec<String>Required actions to address the impact
Trait Implementations§
Source§impl Clone for ImpactDetail
impl Clone for ImpactDetail
Source§fn clone(&self) -> ImpactDetail
fn clone(&self) -> ImpactDetail
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 ImpactDetail
impl Debug for ImpactDetail
Source§impl<'de> Deserialize<'de> for ImpactDetail
impl<'de> Deserialize<'de> for ImpactDetail
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 ImpactDetail
impl RefUnwindSafe for ImpactDetail
impl Send for ImpactDetail
impl Sync for ImpactDetail
impl Unpin for ImpactDetail
impl UnwindSafe for ImpactDetail
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