pub struct CountParams {
pub protocol_version: u32,
pub model: String,
pub args: Option<Value>,
pub transaction_id: Option<String>,
}Expand description
Count request parameters.
Fields§
§protocol_version: u32§model: String§args: Option<Value>Optional query arguments (where, take, skip).
transaction_id: Option<String>Optional transaction ID.
Trait Implementations§
Source§impl Clone for CountParams
impl Clone for CountParams
Source§fn clone(&self) -> CountParams
fn clone(&self) -> CountParams
Returns a duplicate of the value. Read more
1.0.0 · 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 CountParams
impl Debug for CountParams
Source§impl<'de> Deserialize<'de> for CountParams
impl<'de> Deserialize<'de> for CountParams
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 CountParams
impl RefUnwindSafe for CountParams
impl Send for CountParams
impl Sync for CountParams
impl Unpin for CountParams
impl UnsafeUnpin for CountParams
impl UnwindSafe for CountParams
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