[][src]Struct xrl::Query

pub struct Query {
    pub id: u64,
    pub chars: Option<String>,
    pub case_sensitive: Option<bool>,
    pub is_regex: Option<bool>,
    pub whole_words: Option<bool>,
    pub matches: u64,
    pub lines: Vec<u64>,
}

Fields

id: u64chars: Option<String>case_sensitive: Option<bool>is_regex: Option<bool>whole_words: Option<bool>matches: u64lines: Vec<u64>

Trait Implementations

impl PartialEq<Query> for Query[src]

impl Debug for Query[src]

impl Serialize for Query[src]

impl<'de> Deserialize<'de> for Query[src]

Auto Trait Implementations

impl Sync for Query

impl Send for Query

impl Unpin for Query

impl RefUnwindSafe for Query

impl UnwindSafe for Query

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T