pub struct OpResult {
pub result: Result<Value, String>,
pub assignment: bool,
pub assign_to: String,
pub assign_value: Value,
}Fields§
§result: Result<Value, String>§assignment: bool§assign_to: String§assign_value: ValueAuto Trait Implementations§
impl Freeze for OpResult
impl RefUnwindSafe for OpResult
impl Send for OpResult
impl Sync for OpResult
impl Unpin for OpResult
impl UnwindSafe for OpResult
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