pub struct LoopTerminalResult {
pub status: LoopTerminalStatus,
pub stop_reason: LoopStopReason,
}Expand description
Holds loop terminal result application-layer state or configuration. Use it with the documented coordinator methods; run, journal, event, provider, or port effects are called out on those methods rather than on construction.
Fields§
§status: LoopTerminalStatusFinite status for this record or lifecycle stage.
stop_reason: LoopStopReasonStop reason used by this record or request.
Trait Implementations§
Source§impl Clone for LoopTerminalResult
impl Clone for LoopTerminalResult
Source§fn clone(&self) -> LoopTerminalResult
fn clone(&self) -> LoopTerminalResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LoopTerminalResult
Source§impl Debug for LoopTerminalResult
impl Debug for LoopTerminalResult
Source§impl<'de> Deserialize<'de> for LoopTerminalResult
impl<'de> Deserialize<'de> for LoopTerminalResult
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
impl Eq for LoopTerminalResult
Source§impl Hash for LoopTerminalResult
impl Hash for LoopTerminalResult
Source§impl PartialEq for LoopTerminalResult
impl PartialEq for LoopTerminalResult
Source§fn eq(&self, other: &LoopTerminalResult) -> bool
fn eq(&self, other: &LoopTerminalResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LoopTerminalResult
impl Serialize for LoopTerminalResult
impl StructuralPartialEq for LoopTerminalResult
Auto Trait Implementations§
impl Freeze for LoopTerminalResult
impl RefUnwindSafe for LoopTerminalResult
impl Send for LoopTerminalResult
impl Sync for LoopTerminalResult
impl Unpin for LoopTerminalResult
impl UnsafeUnpin for LoopTerminalResult
impl UnwindSafe for LoopTerminalResult
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