pub enum RuleBasedFillUntil {
End,
MaxSize,
}
Expand description
standard fill rules for rule based value specifications
Variants§
End
FILL_UNTIL_END
: fills the value of the last RuleBasedValueSpecification.arguments
until the last element of the array has been filled
MaxSize
FILL_UNTIL_MAX_SIZE
: fills the value of the last RuleBasedValueSpecification.arguments
until maxSizeToFill elements of the array have been filled
Trait Implementations§
Source§impl Clone for RuleBasedFillUntil
impl Clone for RuleBasedFillUntil
Source§fn clone(&self) -> RuleBasedFillUntil
fn clone(&self) -> RuleBasedFillUntil
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 RuleBasedFillUntil
impl Debug for RuleBasedFillUntil
Source§impl Display for RuleBasedFillUntil
impl Display for RuleBasedFillUntil
Source§impl FromStr for RuleBasedFillUntil
impl FromStr for RuleBasedFillUntil
Source§impl PartialEq for RuleBasedFillUntil
impl PartialEq for RuleBasedFillUntil
impl Copy for RuleBasedFillUntil
impl Eq for RuleBasedFillUntil
impl StructuralPartialEq for RuleBasedFillUntil
Auto Trait Implementations§
impl Freeze for RuleBasedFillUntil
impl RefUnwindSafe for RuleBasedFillUntil
impl Send for RuleBasedFillUntil
impl Sync for RuleBasedFillUntil
impl Unpin for RuleBasedFillUntil
impl UnwindSafe for RuleBasedFillUntil
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.