pub struct ResultMeta<V> {
pub result: V,
pub cached: bool,
}
Fields§
§result: V
§cached: bool
Trait Implementations§
Source§impl<V: Clone> Clone for ResultMeta<V>
impl<V: Clone> Clone for ResultMeta<V>
Source§fn clone(&self) -> ResultMeta<V>
fn clone(&self) -> ResultMeta<V>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<V> Freeze for ResultMeta<V>where
V: Freeze,
impl<V> RefUnwindSafe for ResultMeta<V>where
V: RefUnwindSafe,
impl<V> Send for ResultMeta<V>where
V: Send,
impl<V> Sync for ResultMeta<V>where
V: Sync,
impl<V> Unpin for ResultMeta<V>where
V: Unpin,
impl<V> UnwindSafe for ResultMeta<V>where
V: UnwindSafe,
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