Struct elastic::client::requests::endpoints::UpdateByQueryRequest    
                   
                       [−]
                   
               
pub struct UpdateByQueryRequest<'a, B> {
    pub url: Url<'a>,
    pub body: B,
}Fields
url: Url<'a>
                           
                           
                           
                           body: B
                           
                    Methods
impl<'a, B> UpdateByQueryRequest<'a, B>
fn for_index<IIndex>(index: IIndex, body: B) -> UpdateByQueryRequest<'a, B> where
    IIndex: Into<Index<'a>>, 
IIndex: Into<Index<'a>>,
fn for_index_ty<IIndex, IType>(
    index: IIndex, 
    ty: IType, 
    body: B
) -> UpdateByQueryRequest<'a, B> where
    IIndex: Into<Index<'a>>,
    IType: Into<Type<'a>>, 
index: IIndex,
ty: IType,
body: B
) -> UpdateByQueryRequest<'a, B> where
IIndex: Into<Index<'a>>,
IType: Into<Type<'a>>,
Trait Implementations
impl<'a, B> Clone for UpdateByQueryRequest<'a, B> where
    B: Clone, 
B: Clone,
fn clone(&self) -> UpdateByQueryRequest<'a, B>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<'a, B> PartialEq<UpdateByQueryRequest<'a, B>> for UpdateByQueryRequest<'a, B> where
    B: PartialEq<B>, 
B: PartialEq<B>,
fn eq(&self, __arg_0: &UpdateByQueryRequest<'a, B>) -> bool
fn ne(&self, __arg_0: &UpdateByQueryRequest<'a, B>) -> bool
impl<'a, B> Debug for UpdateByQueryRequest<'a, B> where
    B: Debug, 
B: Debug,
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.
impl<'a, B> Into<HttpRequest<'a, B>> for UpdateByQueryRequest<'a, B>
fn into(self) -> HttpRequest<'a, B>
Performs the conversion.