Struct espocrm_rs::Params [−][src]
pub struct Params {
pub offset: Option<i64>,
pub max_size: Option<i64>,
pub select: Option<String>,
pub where: Option<Vec<Where>>,
pub primary_filter: Option<String>,
pub bool_filter_list: Option<Vec<String>>,
pub order: Option<Order>,
pub order_by: Option<String>,
}Fields
offset: Option<i64>max_size: Option<i64>select: Option<String>where: Option<Vec<Where>>primary_filter: Option<String>bool_filter_list: Option<Vec<String>>order: Option<Order>order_by: Option<String>Implementations
impl Params[src]
impl Params[src]pub fn new() -> Self[src]
pub fn set_offset(&mut self, offset: i64) -> &mut Self[src]
pub fn set_max_size(&mut self, max_size: i64) -> &mut Self[src]
pub fn set_select(&mut self, select: &str) -> &mut Self[src]
pub fn set_where(&mut self, where: Vec<Where>) -> &mut Self[src]
pub fn set_primary_filter(&mut self, primary_filter: &str) -> &mut Self[src]
pub fn set_bool_filter_list(
&mut self,
bool_filter_list: Vec<String>
) -> &mut Self[src]
&mut self,
bool_filter_list: Vec<String>
) -> &mut Self
pub fn set_order(&mut self, order: Order) -> &mut Self[src]
pub fn set_order_by(&mut self, order_by: &str) -> &mut Self[src]
pub fn build(&self) -> Self[src]
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Params
impl Send for Params
impl Sync for Params
impl Unpin for Params
impl UnwindSafe for Params
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> Instrument for T[src]
impl<T> Instrument for T[src]fn instrument(self, span: Span) -> Instrumented<Self>[src]
fn instrument(self, span: Span) -> Instrumented<Self>[src]Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>[src]
fn in_current_span(self) -> Instrumented<Self>[src]impl<T> Same<T> for T
impl<T> Same<T> for Ttype Output = T
type Output = TShould always be Self
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more