pub enum UpdateStatus {
Updated,
Unchanged,
NotInstalled,
DryRun,
}Variants§
Updated
At least one template file was re-rendered and written.
Unchanged
All template files already match the current version — no writes.
NotInstalled
spool is not installed for this client (no mcpServers entry).
DryRun
Dry-run — nothing touched. updated_paths describes what would change.
Trait Implementations§
Source§impl Clone for UpdateStatus
impl Clone for UpdateStatus
Source§fn clone(&self) -> UpdateStatus
fn clone(&self) -> UpdateStatus
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 UpdateStatus
impl Debug for UpdateStatus
Source§impl PartialEq for UpdateStatus
impl PartialEq for UpdateStatus
Source§fn eq(&self, other: &UpdateStatus) -> bool
fn eq(&self, other: &UpdateStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UpdateStatus
impl Serialize for UpdateStatus
impl Eq for UpdateStatus
impl StructuralPartialEq for UpdateStatus
Auto Trait Implementations§
impl Freeze for UpdateStatus
impl RefUnwindSafe for UpdateStatus
impl Send for UpdateStatus
impl Sync for UpdateStatus
impl Unpin for UpdateStatus
impl UnsafeUnpin for UpdateStatus
impl UnwindSafe for UpdateStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.