pub struct ExpressionDomainCandidateV0 {
pub expression_id: String,
pub file_path: String,
pub value_domain_kind: String,
pub value_constraint_kind: Option<String>,
pub value_prefix: Option<String>,
pub value_suffix: Option<String>,
pub value_min_len: Option<usize>,
pub value_max_len: Option<usize>,
pub value_char_must: Option<String>,
pub value_char_may: Option<String>,
pub value_may_include_other_chars: Option<bool>,
pub finite_value_count: usize,
}Fields§
§expression_id: String§file_path: String§value_domain_kind: String§value_constraint_kind: Option<String>§value_prefix: Option<String>§value_suffix: Option<String>§value_min_len: Option<usize>§value_max_len: Option<usize>§value_char_must: Option<String>§value_char_may: Option<String>§value_may_include_other_chars: Option<bool>§finite_value_count: usizeTrait Implementations§
Source§impl Clone for ExpressionDomainCandidateV0
impl Clone for ExpressionDomainCandidateV0
Source§fn clone(&self) -> ExpressionDomainCandidateV0
fn clone(&self) -> ExpressionDomainCandidateV0
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ExpressionDomainCandidateV0
impl Debug for ExpressionDomainCandidateV0
Auto Trait Implementations§
impl Freeze for ExpressionDomainCandidateV0
impl RefUnwindSafe for ExpressionDomainCandidateV0
impl Send for ExpressionDomainCandidateV0
impl Sync for ExpressionDomainCandidateV0
impl Unpin for ExpressionDomainCandidateV0
impl UnsafeUnpin for ExpressionDomainCandidateV0
impl UnwindSafe for ExpressionDomainCandidateV0
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