pub struct Discovered<R> {
pub meta: Meta,
pub reference: R,
}Expand description
A transcript found by Store::discover: its metadata and how to load it.
Fields§
§meta: Meta§reference: RTrait Implementations§
Source§impl<R: Clone> Clone for Discovered<R>
impl<R: Clone> Clone for Discovered<R>
Source§fn clone(&self) -> Discovered<R>
fn clone(&self) -> Discovered<R>
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 moreAuto Trait Implementations§
impl<R> Freeze for Discovered<R>where
R: Freeze,
impl<R> RefUnwindSafe for Discovered<R>where
R: RefUnwindSafe,
impl<R> Send for Discovered<R>where
R: Send,
impl<R> Sync for Discovered<R>where
R: Sync,
impl<R> Unpin for Discovered<R>where
R: Unpin,
impl<R> UnsafeUnpin for Discovered<R>where
R: UnsafeUnpin,
impl<R> UnwindSafe for Discovered<R>where
R: 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