pub struct AddFeatureComparisonParams<'a> {
pub feature_code: Option<&'a str>,
pub element_code: Option<&'a str>,
pub exec_order: Option<i64>,
pub display_level: Option<i64>,
pub display_delim: Option<&'a str>,
pub derived: Option<&'a str>,
}Expand description
Parameters for adding a feature comparison (FBOM)
Fields§
§feature_code: Option<&'a str>§element_code: Option<&'a str>§exec_order: Option<i64>§display_level: Option<i64>§display_delim: Option<&'a str>§derived: Option<&'a str>Implementations§
Source§impl<'a> AddFeatureComparisonParams<'a>
impl<'a> AddFeatureComparisonParams<'a>
pub fn new(feature_code: &'a str, element_code: &'a str) -> Self
pub fn with_exec_order(self, order: i64) -> Self
pub fn with_display_level(self, level: i64) -> Self
pub fn with_display_delim(self, delim: &'a str) -> Self
pub fn with_derived(self, derived: &'a str) -> Self
Trait Implementations§
Source§impl<'a> Clone for AddFeatureComparisonParams<'a>
impl<'a> Clone for AddFeatureComparisonParams<'a>
Source§fn clone(&self) -> AddFeatureComparisonParams<'a>
fn clone(&self) -> AddFeatureComparisonParams<'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 AddFeatureComparisonParams<'a>
impl<'a> Debug for AddFeatureComparisonParams<'a>
Source§impl<'a> Default for AddFeatureComparisonParams<'a>
impl<'a> Default for AddFeatureComparisonParams<'a>
Source§fn default() -> AddFeatureComparisonParams<'a>
fn default() -> AddFeatureComparisonParams<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for AddFeatureComparisonParams<'a>
impl<'a> RefUnwindSafe for AddFeatureComparisonParams<'a>
impl<'a> Send for AddFeatureComparisonParams<'a>
impl<'a> Sync for AddFeatureComparisonParams<'a>
impl<'a> Unpin for AddFeatureComparisonParams<'a>
impl<'a> UnsafeUnpin for AddFeatureComparisonParams<'a>
impl<'a> UnwindSafe for AddFeatureComparisonParams<'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