pub enum StoreStringResult {
StringAlreadyStored {
id: StringId,
},
StringIsNew {
new_id: StringId,
value: String,
},
}Variants§
Auto Trait Implementations§
impl Freeze for StoreStringResult
impl RefUnwindSafe for StoreStringResult
impl Send for StoreStringResult
impl Sync for StoreStringResult
impl Unpin for StoreStringResult
impl UnsafeUnpin for StoreStringResult
impl UnwindSafe for StoreStringResult
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