pub enum ProviderField {
OwnerName,
AnimalName,
RetailItemName,
RetailItemSku,
RetailItemCategory,
}Expand description
Gingr fields required by DTO-to-domain mapping routines.
Variants§
OwnerName
Required Gingr owner-name field for customer mapping.
AnimalName
Required Gingr animal-name field for pet mapping.
RetailItemName
Required Gingr retail item name for product mapping.
RetailItemSku
Required Gingr retail SKU for product matching.
RetailItemCategory
Required Gingr retail category for merchandising mapping.
Trait Implementations§
Source§impl Clone for ProviderField
impl Clone for ProviderField
Source§fn clone(&self) -> ProviderField
fn clone(&self) -> ProviderField
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 ProviderField
impl Debug for ProviderField
Source§impl Display for ProviderField
impl Display for ProviderField
Source§impl PartialEq for ProviderField
impl PartialEq for ProviderField
impl Eq for ProviderField
impl StructuralPartialEq for ProviderField
Auto Trait Implementations§
impl Freeze for ProviderField
impl RefUnwindSafe for ProviderField
impl Send for ProviderField
impl Sync for ProviderField
impl Unpin for ProviderField
impl UnsafeUnpin for ProviderField
impl UnwindSafe for ProviderField
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