pub enum FuelResult {
Continue,
Stop,
}
Expand description
The result of consuming fuel. Signals if the caller should stop or continue.
Variants§
Continue
We still have fuel
available and should continue execution.
Stop
The available fuel
has been exhausted, we should stop now.
Trait Implementations§
Source§impl Clone for FuelResult
impl Clone for FuelResult
Source§fn clone(&self) -> FuelResult
fn clone(&self) -> FuelResult
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 FuelResult
impl Debug for FuelResult
Source§impl PartialEq for FuelResult
impl PartialEq for FuelResult
impl StructuralPartialEq for FuelResult
Auto Trait Implementations§
impl Freeze for FuelResult
impl RefUnwindSafe for FuelResult
impl Send for FuelResult
impl Sync for FuelResult
impl Unpin for FuelResult
impl UnwindSafe for FuelResult
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