Struct elasticsearch::eql::Eql
source · [−]pub struct Eql<'a> { /* private fields */ }
Expand description
Namespace client for Eql APIs
Implementations
sourceimpl<'a> Eql<'a>
impl<'a> Eql<'a>
pub fn transport(&self) -> &Transport
sourcepub fn delete<'b>(&'a self, parts: EqlDeleteParts<'b>) -> EqlDelete<'a, 'b>
pub fn delete<'b>(&'a self, parts: EqlDeleteParts<'b>) -> EqlDelete<'a, 'b>
Deletes an async EQL search by ID. If the search is still running, the search request will be cancelled. Otherwise, the saved search results are deleted.
sourcepub fn get<'b>(&'a self, parts: EqlGetParts<'b>) -> EqlGet<'a, 'b>
pub fn get<'b>(&'a self, parts: EqlGetParts<'b>) -> EqlGet<'a, 'b>
Returns async results from previously executed Event Query Language (EQL) search
sourcepub fn get_status<'b>(
&'a self,
parts: EqlGetStatusParts<'b>
) -> EqlGetStatus<'a, 'b>
pub fn get_status<'b>(
&'a self,
parts: EqlGetStatusParts<'b>
) -> EqlGetStatus<'a, 'b>
Returns the status of a previously submitted async or stored Event Query Language (EQL) search
sourcepub fn search<'b>(&'a self, parts: EqlSearchParts<'b>) -> EqlSearch<'a, 'b, ()>
pub fn search<'b>(&'a self, parts: EqlSearchParts<'b>) -> EqlSearch<'a, 'b, ()>
Returns results matching a query expressed in Event Query Language (EQL)
Auto Trait Implementations
impl<'a> !RefUnwindSafe for Eql<'a>
impl<'a> Send for Eql<'a>
impl<'a> Sync for Eql<'a>
impl<'a> Unpin for Eql<'a>
impl<'a> !UnwindSafe for Eql<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more