pub enum TickResult {
Success,
Failure(String),
Running,
}Expand description
The result that the node returns It can be Success, Failure or Running The Failure contains the error message The Running means that the node is still running and it will be executed on the next tick
Variants§
Trait Implementations§
Source§impl Clone for TickResult
impl Clone for TickResult
Source§fn clone(&self) -> TickResult
fn clone(&self) -> TickResult
Returns a duplicate 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 TickResult
impl Debug for TickResult
Source§impl<'de> Deserialize<'de> for TickResult
impl<'de> Deserialize<'de> for TickResult
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 TickResult
impl PartialEq for TickResult
Source§impl Serialize for TickResult
impl Serialize for TickResult
impl StructuralPartialEq for TickResult
Auto Trait Implementations§
impl Freeze for TickResult
impl RefUnwindSafe for TickResult
impl Send for TickResult
impl Sync for TickResult
impl Unpin for TickResult
impl UnwindSafe for TickResult
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