pub struct RawActiveGoal {
pub goal_id: GoalId,
pub status: GoalStatus,
}Expand description
Goal tracked by the core — only GoalId + status, no typed data.
Fields§
§goal_id: GoalIdGoal ID.
status: GoalStatusCurrent status.
Trait Implementations§
Source§impl Clone for RawActiveGoal
impl Clone for RawActiveGoal
Source§fn clone(&self) -> RawActiveGoal
fn clone(&self) -> RawActiveGoal
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 moreimpl Copy for RawActiveGoal
Auto Trait Implementations§
impl Freeze for RawActiveGoal
impl RefUnwindSafe for RawActiveGoal
impl Send for RawActiveGoal
impl Sync for RawActiveGoal
impl Unpin for RawActiveGoal
impl UnsafeUnpin for RawActiveGoal
impl UnwindSafe for RawActiveGoal
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