pub struct NoForeignFetcher;Expand description
A no-op foreign fetcher that does not perform any fetching.
Trait Implementations§
Source§impl Default for NoForeignFetcher
impl Default for NoForeignFetcher
Source§fn default() -> NoForeignFetcher
fn default() -> NoForeignFetcher
Returns the “default value” for a type. Read more
Source§impl ForeignFetcher for NoForeignFetcher
impl ForeignFetcher for NoForeignFetcher
Source§fn fetch(
&self,
_database: &impl Database,
_table: &str,
_local_column: &'static str,
_pk_value: Value,
) -> IcDbmsResult<TableColumns>
fn fetch( &self, _database: &impl Database, _table: &str, _local_column: &'static str, _pk_value: Value, ) -> IcDbmsResult<TableColumns>
Fetches the data for the specified table and primary key values. Read more
Auto Trait Implementations§
impl Freeze for NoForeignFetcher
impl RefUnwindSafe for NoForeignFetcher
impl Send for NoForeignFetcher
impl Sync for NoForeignFetcher
impl Unpin for NoForeignFetcher
impl UnwindSafe for NoForeignFetcher
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