pub enum StoreRefResult {
RefAlreadyStored {
id: RefId,
},
RefIsNew {
new_id: RefId,
value: *const dyn Any,
},
}Variants§
Auto Trait Implementations§
impl !RefUnwindSafe for StoreRefResult
impl !Send for StoreRefResult
impl !Sync for StoreRefResult
impl !UnwindSafe for StoreRefResult
impl Freeze for StoreRefResult
impl Unpin for StoreRefResult
impl UnsafeUnpin for StoreRefResult
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