Struct cairo_lang_test_plugin::TestCompilation
source · pub struct TestCompilation {
pub sierra_program: ProgramArtifact,
pub metadata: TestCompilationMetadata,
}
Expand description
Encapsulation of all data required to execute tests. This includes the source code compiled to a Sierra program and all cairo-test specific data extracted from it. This can be stored on the filesystem and shared externally.
Fields§
§sierra_program: ProgramArtifact
§metadata: TestCompilationMetadata
Trait Implementations§
source§impl Clone for TestCompilation
impl Clone for TestCompilation
source§fn clone(&self) -> TestCompilation
fn clone(&self) -> TestCompilation
Returns a copy 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 TestCompilation
impl Debug for TestCompilation
source§impl<'de> Deserialize<'de> for TestCompilation
impl<'de> Deserialize<'de> for TestCompilation
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 TestCompilation
impl PartialEq for TestCompilation
source§fn eq(&self, other: &TestCompilation) -> bool
fn eq(&self, other: &TestCompilation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TestCompilation
impl Serialize for TestCompilation
impl StructuralPartialEq for TestCompilation
Auto Trait Implementations§
impl Freeze for TestCompilation
impl RefUnwindSafe for TestCompilation
impl Send for TestCompilation
impl Sync for TestCompilation
impl Unpin for TestCompilation
impl UnwindSafe for TestCompilation
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more