pub struct UnloadActionResult {
pub label: String,
pub executed: bool,
pub outcome: String,
}Expand description
Outcome of dispatching a single ProviderUnloadAction. The planner owns
execution (#kgunloadpost) so any caller — tsift kg unload, a future
lease-drop hook, or the lifecycle swap path — gets the same POST behavior
without re-implementing the HTTP fallback chain.
Fields§
§label: String§executed: bool§outcome: StringTrait Implementations§
Source§impl Clone for UnloadActionResult
impl Clone for UnloadActionResult
Source§fn clone(&self) -> UnloadActionResult
fn clone(&self) -> UnloadActionResult
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 moreSource§impl Debug for UnloadActionResult
impl Debug for UnloadActionResult
impl Eq for UnloadActionResult
Source§impl PartialEq for UnloadActionResult
impl PartialEq for UnloadActionResult
Source§impl Serialize for UnloadActionResult
impl Serialize for UnloadActionResult
impl StructuralPartialEq for UnloadActionResult
Auto Trait Implementations§
impl Freeze for UnloadActionResult
impl RefUnwindSafe for UnloadActionResult
impl Send for UnloadActionResult
impl Sync for UnloadActionResult
impl Unpin for UnloadActionResult
impl UnsafeUnpin for UnloadActionResult
impl UnwindSafe for UnloadActionResult
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