pub struct ReducerTableRef {
pub node_selection: NodeSelection,
pub module_selection: ModuleSelection,
pub table_name: String,
}Expand description
Declared table access for a reducer: NodeSelection + ModuleSelection + table_name.
Use ModuleSelection::Current for the module that contains the reducer (no embedded crate name);
the runtime matches that against the active call frame / host-call ModuleSelection, like table scans.
Fields§
§node_selection: NodeSelection§module_selection: ModuleSelection§table_name: StringTrait Implementations§
Source§impl Clone for ReducerTableRef
impl Clone for ReducerTableRef
Source§fn clone(&self) -> ReducerTableRef
fn clone(&self) -> ReducerTableRef
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 ReducerTableRef
impl Debug for ReducerTableRef
Source§impl<'de> Deserialize<'de> for ReducerTableRef
impl<'de> Deserialize<'de> for ReducerTableRef
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ReducerTableRef
Source§impl Hash for ReducerTableRef
impl Hash for ReducerTableRef
Source§impl Ord for ReducerTableRef
impl Ord for ReducerTableRef
Source§fn cmp(&self, other: &ReducerTableRef) -> Ordering
fn cmp(&self, other: &ReducerTableRef) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ReducerTableRef
impl PartialEq for ReducerTableRef
Source§fn eq(&self, other: &ReducerTableRef) -> bool
fn eq(&self, other: &ReducerTableRef) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ReducerTableRef
impl PartialOrd for ReducerTableRef
Source§impl Serialize for ReducerTableRef
impl Serialize for ReducerTableRef
impl StructuralPartialEq for ReducerTableRef
Auto Trait Implementations§
impl Freeze for ReducerTableRef
impl RefUnwindSafe for ReducerTableRef
impl Send for ReducerTableRef
impl Sync for ReducerTableRef
impl Unpin for ReducerTableRef
impl UnsafeUnpin for ReducerTableRef
impl UnwindSafe for ReducerTableRef
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