pub struct TestCase<'a> {
pub params: Vec<&'a Type>,
pub result: Option<&'a Type>,
pub encoding1: StringEncoding,
pub encoding2: StringEncoding,
}
Expand description
Represents a test case for calling a component function
Fields§
§params: Vec<&'a Type>
The types of parameters to pass to the function
result: Option<&'a Type>
The result types of the function
encoding1: StringEncoding
String encoding to use from host-to-component.
encoding2: StringEncoding
String encoding to use from component-to-host.
Implementations§
Source§impl TestCase<'_>
impl TestCase<'_>
Sourcepub fn declarations(&self) -> Declarations
pub fn declarations(&self) -> Declarations
Generate a Declarations
for this TestCase
which may be used to build a component to execute the case.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for TestCase<'a>
impl<'a> RefUnwindSafe for TestCase<'a>
impl<'a> Send for TestCase<'a>
impl<'a> Sync for TestCase<'a>
impl<'a> Unpin for TestCase<'a>
impl<'a> UnwindSafe for TestCase<'a>
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