pub struct ActionFeedback<F> {
pub timestamp: Timestamp,
pub value: F,
}Expand description
Intermediate progress published by the server during goal execution.
Feedback is keyed by ActionGoalId so the client can distinguish updates
from concurrent goals. Delivery is best-effort; the client must not assume
every item is received. Only the final ActionResult is delivered exactly once.
Fields§
§timestamp: TimestampTimestamp when this feedback was produced.
value: FApplication-defined feedback payload.
Trait Implementations§
Source§impl<F: Clone> Clone for ActionFeedback<F>
impl<F: Clone> Clone for ActionFeedback<F>
Source§fn clone(&self) -> ActionFeedback<F>
fn clone(&self) -> ActionFeedback<F>
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<F: Debug> Debug for ActionFeedback<F>
impl<F: Debug> Debug for ActionFeedback<F>
Source§impl<F: PartialEq> PartialEq for ActionFeedback<F>
impl<F: PartialEq> PartialEq for ActionFeedback<F>
impl<F: Eq> Eq for ActionFeedback<F>
impl<F> StructuralPartialEq for ActionFeedback<F>
Auto Trait Implementations§
impl<F> Freeze for ActionFeedback<F>where
F: Freeze,
impl<F> RefUnwindSafe for ActionFeedback<F>where
F: RefUnwindSafe,
impl<F> Send for ActionFeedback<F>where
F: Send,
impl<F> Sync for ActionFeedback<F>where
F: Sync,
impl<F> Unpin for ActionFeedback<F>where
F: Unpin,
impl<F> UnsafeUnpin for ActionFeedback<F>where
F: UnsafeUnpin,
impl<F> UnwindSafe for ActionFeedback<F>where
F: UnwindSafe,
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