pub struct JetCall {
pub jet: String,
pub source_ty: String,
pub target_ty: String,
pub success: bool,
pub input_value: String,
pub output_value: String,
pub equality_check: Option<(String, String)>,
}Fields§
§jet: String§source_ty: String§target_ty: String§success: bool§input_value: String§output_value: String§equality_check: Option<(String, String)>Trait Implementations§
Auto Trait Implementations§
impl Freeze for JetCall
impl RefUnwindSafe for JetCall
impl Send for JetCall
impl Sync for JetCall
impl Unpin for JetCall
impl UnwindSafe for JetCall
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