pub enum ActivateResult {
Activated,
AdoptionRequired {
save_count: usize,
},
}Expand description
Result of activating a profile.
Variants§
Activated
Profile was activated successfully.
AdoptionRequired
Existing saves need adoption before activation can proceed.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ActivateResult
impl RefUnwindSafe for ActivateResult
impl Send for ActivateResult
impl Sync for ActivateResult
impl Unpin for ActivateResult
impl UnsafeUnpin for ActivateResult
impl UnwindSafe for ActivateResult
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