pub struct ProcessorDispatch {
pub subdirectory_overrides: HashMap<u16, String>,
pub parameters: HashMap<String, String>,
}
Expand description
Temporary placeholder for ProcessorDispatch during Phase 5 cleanup TODO: Remove this once trait-based dispatch is fully integrated
Fields§
§subdirectory_overrides: HashMap<u16, String>
§parameters: HashMap<String, String>
Implementations§
Source§impl ProcessorDispatch
impl ProcessorDispatch
pub fn with_table_processor(_processor: String) -> Self
Trait Implementations§
Source§impl Clone for ProcessorDispatch
impl Clone for ProcessorDispatch
Source§fn clone(&self) -> ProcessorDispatch
fn clone(&self) -> ProcessorDispatch
Returns a duplicate of the value. Read more
1.0.0 · 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 ProcessorDispatch
impl Debug for ProcessorDispatch
Source§impl Default for ProcessorDispatch
impl Default for ProcessorDispatch
Source§fn default() -> ProcessorDispatch
fn default() -> ProcessorDispatch
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProcessorDispatch
impl RefUnwindSafe for ProcessorDispatch
impl Send for ProcessorDispatch
impl Sync for ProcessorDispatch
impl Unpin for ProcessorDispatch
impl UnwindSafe for ProcessorDispatch
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