pub struct InMemoryFetcher { /* private fields */ }Expand description
In-memory test fetcher for fixture-based testing.
Stores frozen upstream data snapshots. Useful for unit testing adapters without network access. Does not perform any I/O; all data is pre-loaded.
Implementations§
Trait Implementations§
Source§impl Clone for InMemoryFetcher
impl Clone for InMemoryFetcher
Source§fn clone(&self) -> InMemoryFetcher
fn clone(&self) -> InMemoryFetcher
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 moreSource§impl Debug for InMemoryFetcher
impl Debug for InMemoryFetcher
Source§impl Default for InMemoryFetcher
impl Default for InMemoryFetcher
Auto Trait Implementations§
impl Freeze for InMemoryFetcher
impl RefUnwindSafe for InMemoryFetcher
impl Send for InMemoryFetcher
impl Sync for InMemoryFetcher
impl Unpin for InMemoryFetcher
impl UnsafeUnpin for InMemoryFetcher
impl UnwindSafe for InMemoryFetcher
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