pub struct AddFeatureDistinctCallElementParams<'a> {
pub feature_code: Option<&'a str>,
pub distinct_func_code: Option<&'a str>,
pub element_code: Option<&'a str>,
pub exec_order: Option<i64>,
}Expand description
Parameters for adding a feature distinct call element (CFG_DFCALL)
Fields§
§feature_code: Option<&'a str>§distinct_func_code: Option<&'a str>§element_code: Option<&'a str>§exec_order: Option<i64>Implementations§
Source§impl<'a> AddFeatureDistinctCallElementParams<'a>
impl<'a> AddFeatureDistinctCallElementParams<'a>
pub fn new(feature_code: &'a str, distinct_func_code: &'a str) -> Self
pub fn with_element_code(self, element_code: &'a str) -> Self
pub fn with_exec_order(self, order: i64) -> Self
Trait Implementations§
Source§impl<'a> Clone for AddFeatureDistinctCallElementParams<'a>
impl<'a> Clone for AddFeatureDistinctCallElementParams<'a>
Source§fn clone(&self) -> AddFeatureDistinctCallElementParams<'a>
fn clone(&self) -> AddFeatureDistinctCallElementParams<'a>
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<'a> Debug for AddFeatureDistinctCallElementParams<'a>
impl<'a> Debug for AddFeatureDistinctCallElementParams<'a>
Source§impl<'a> Default for AddFeatureDistinctCallElementParams<'a>
impl<'a> Default for AddFeatureDistinctCallElementParams<'a>
Source§fn default() -> AddFeatureDistinctCallElementParams<'a>
fn default() -> AddFeatureDistinctCallElementParams<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for AddFeatureDistinctCallElementParams<'a>
impl<'a> RefUnwindSafe for AddFeatureDistinctCallElementParams<'a>
impl<'a> Send for AddFeatureDistinctCallElementParams<'a>
impl<'a> Sync for AddFeatureDistinctCallElementParams<'a>
impl<'a> Unpin for AddFeatureDistinctCallElementParams<'a>
impl<'a> UnsafeUnpin for AddFeatureDistinctCallElementParams<'a>
impl<'a> UnwindSafe for AddFeatureDistinctCallElementParams<'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