pub struct RepeatedQuestionEntry {
pub id: String,
pub pos: usize,
pub min_count: usize,
pub max_count: usize,
pub query_text: String,
pub secondary_query_text: Option<String>,
pub help_text: Option<String>,
pub entry_type: EntryType,
}Fields§
§id: String§pos: usize§min_count: usize§max_count: usize§query_text: String§secondary_query_text: Option<String>§help_text: Option<String>§entry_type: EntryTypeImplementations§
Trait Implementations§
Source§impl Clone for RepeatedQuestionEntry
impl Clone for RepeatedQuestionEntry
Source§fn clone(&self) -> RepeatedQuestionEntry
fn clone(&self) -> RepeatedQuestionEntry
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 RepeatedQuestionEntry
impl Debug for RepeatedQuestionEntry
Source§impl Default for RepeatedQuestionEntry
impl Default for RepeatedQuestionEntry
Source§fn default() -> RepeatedQuestionEntry
fn default() -> RepeatedQuestionEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RepeatedQuestionEntry
impl<'de> Deserialize<'de> for RepeatedQuestionEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RepeatedQuestionEntry
impl PartialEq for RepeatedQuestionEntry
Source§impl Serialize for RepeatedQuestionEntry
impl Serialize for RepeatedQuestionEntry
impl StructuralPartialEq for RepeatedQuestionEntry
Auto Trait Implementations§
impl Freeze for RepeatedQuestionEntry
impl RefUnwindSafe for RepeatedQuestionEntry
impl Send for RepeatedQuestionEntry
impl Sync for RepeatedQuestionEntry
impl Unpin for RepeatedQuestionEntry
impl UnwindSafe for RepeatedQuestionEntry
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