pub struct RatchetReceipt {
pub schema: String,
pub tool: ToolInfo,
pub bench_name: String,
pub compare_path: Option<String>,
pub changes: Vec<RatchetChange>,
}Expand description
Machine-readable ratchet artifact.
Fields§
§schema: String§tool: ToolInfo§bench_name: String§compare_path: Option<String>§changes: Vec<RatchetChange>Trait Implementations§
Source§impl Clone for RatchetReceipt
impl Clone for RatchetReceipt
Source§fn clone(&self) -> RatchetReceipt
fn clone(&self) -> RatchetReceipt
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RatchetReceipt
impl Debug for RatchetReceipt
Source§impl<'de> Deserialize<'de> for RatchetReceipt
impl<'de> Deserialize<'de> for RatchetReceipt
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 JsonSchema for RatchetReceipt
impl JsonSchema for RatchetReceipt
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for RatchetReceipt
impl PartialEq for RatchetReceipt
Source§fn eq(&self, other: &RatchetReceipt) -> bool
fn eq(&self, other: &RatchetReceipt) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RatchetReceipt
impl Serialize for RatchetReceipt
impl StructuralPartialEq for RatchetReceipt
Auto Trait Implementations§
impl Freeze for RatchetReceipt
impl RefUnwindSafe for RatchetReceipt
impl Send for RatchetReceipt
impl Sync for RatchetReceipt
impl Unpin for RatchetReceipt
impl UnsafeUnpin for RatchetReceipt
impl UnwindSafe for RatchetReceipt
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