pub struct OssLocalReplayReport {
pub version: Option<String>,
pub schema_version: Option<String>,
pub generated_at: Option<String>,
pub template: Option<String>,
pub provider: Option<String>,
pub summary: Box<OssLocalRunSummary>,
pub receipts: Vec<OssLocalDecision>,
}Fields§
§version: Option<String>§schema_version: Option<String>§generated_at: Option<String>§template: Option<String>§provider: Option<String>§summary: Box<OssLocalRunSummary>§receipts: Vec<OssLocalDecision>Implementations§
Source§impl OssLocalReplayReport
impl OssLocalReplayReport
pub fn new( summary: OssLocalRunSummary, receipts: Vec<OssLocalDecision>, ) -> OssLocalReplayReport
Trait Implementations§
Source§impl Clone for OssLocalReplayReport
impl Clone for OssLocalReplayReport
Source§fn clone(&self) -> OssLocalReplayReport
fn clone(&self) -> OssLocalReplayReport
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 OssLocalReplayReport
impl Debug for OssLocalReplayReport
Source§impl Default for OssLocalReplayReport
impl Default for OssLocalReplayReport
Source§fn default() -> OssLocalReplayReport
fn default() -> OssLocalReplayReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OssLocalReplayReport
impl<'de> Deserialize<'de> for OssLocalReplayReport
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 PartialEq for OssLocalReplayReport
impl PartialEq for OssLocalReplayReport
Source§impl Serialize for OssLocalReplayReport
impl Serialize for OssLocalReplayReport
impl StructuralPartialEq for OssLocalReplayReport
Auto Trait Implementations§
impl Freeze for OssLocalReplayReport
impl RefUnwindSafe for OssLocalReplayReport
impl Send for OssLocalReplayReport
impl Sync for OssLocalReplayReport
impl Unpin for OssLocalReplayReport
impl UnsafeUnpin for OssLocalReplayReport
impl UnwindSafe for OssLocalReplayReport
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