pub enum RegisterOutcome {
Added,
Updated,
}Expand description
What SimRegistry::register did with the alias.
Variants§
Added
The alias did not exist; a new row was written.
Updated
The alias existed; its row was replaced.
Trait Implementations§
Source§impl Clone for RegisterOutcome
impl Clone for RegisterOutcome
Source§fn clone(&self) -> RegisterOutcome
fn clone(&self) -> RegisterOutcome
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 moreimpl Copy for RegisterOutcome
Source§impl Debug for RegisterOutcome
impl Debug for RegisterOutcome
impl Eq for RegisterOutcome
Source§impl PartialEq for RegisterOutcome
impl PartialEq for RegisterOutcome
impl StructuralPartialEq for RegisterOutcome
Auto Trait Implementations§
impl Freeze for RegisterOutcome
impl RefUnwindSafe for RegisterOutcome
impl Send for RegisterOutcome
impl Sync for RegisterOutcome
impl Unpin for RegisterOutcome
impl UnsafeUnpin for RegisterOutcome
impl UnwindSafe for RegisterOutcome
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