pub struct SubTopic {
pub name: String,
pub queries: Vec<String>,
}Expand description
A sub-topic with its associated search queries.
Fields§
§name: StringShort name for the sub-topic.
queries: Vec<String>Search queries to investigate this sub-topic.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SubTopic
impl<'de> Deserialize<'de> for SubTopic
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
Auto Trait Implementations§
impl Freeze for SubTopic
impl RefUnwindSafe for SubTopic
impl Send for SubTopic
impl Sync for SubTopic
impl Unpin for SubTopic
impl UnsafeUnpin for SubTopic
impl UnwindSafe for SubTopic
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