pub struct JoinedRow<'a> { /* private fields */ }Expand description
JoinedRow — a RowAccess adapter over several named topic
sources. Dotted paths topic.field.sub are split at the first .:
the prefix matches the topic name, the rest is forwarded to its
RowAccess::get.
If no topic source knows the prefix, the whole path is forwarded to all sources (fallback for undotted field references).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for JoinedRow<'a>
impl<'a> !Send for JoinedRow<'a>
impl<'a> !Sync for JoinedRow<'a>
impl<'a> !UnwindSafe for JoinedRow<'a>
impl<'a> Freeze for JoinedRow<'a>
impl<'a> Unpin for JoinedRow<'a>
impl<'a> UnsafeUnpin for JoinedRow<'a>
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