pub struct TechnicalSheetQuery {
pub section: String,
pub text: String,
pub contains: u8,
}Expand description
Query for searching in technical data sheet
Fields§
§section: StringSection to search (1-10, can have sublevels “4.1”)
text: StringText to search for
contains: u81: must contain text, 0: must not contain
Trait Implementations§
Source§impl Clone for TechnicalSheetQuery
impl Clone for TechnicalSheetQuery
Source§fn clone(&self) -> TechnicalSheetQuery
fn clone(&self) -> TechnicalSheetQuery
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 TechnicalSheetQuery
impl Debug for TechnicalSheetQuery
Source§impl<'de> Deserialize<'de> for TechnicalSheetQuery
impl<'de> Deserialize<'de> for TechnicalSheetQuery
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 TechnicalSheetQuery
impl RefUnwindSafe for TechnicalSheetQuery
impl Send for TechnicalSheetQuery
impl Sync for TechnicalSheetQuery
impl Unpin for TechnicalSheetQuery
impl UnsafeUnpin for TechnicalSheetQuery
impl UnwindSafe for TechnicalSheetQuery
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