pub struct ReadOperation {
pub table: String,
pub query: Query,
pub fields: Option<Vec<String>>,
pub limit: Option<u32>,
pub offset: Option<u32>,
pub order_by: Option<Vec<(String, bool)>>,
}Fields§
§table: String§query: Query§fields: Option<Vec<String>>§limit: Option<u32>§offset: Option<u32>§order_by: Option<Vec<(String, bool)>>Trait Implementations§
Source§impl Clone for ReadOperation
impl Clone for ReadOperation
Source§fn clone(&self) -> ReadOperation
fn clone(&self) -> ReadOperation
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 ReadOperation
impl Debug for ReadOperation
Source§impl PartialEq for ReadOperation
impl PartialEq for ReadOperation
impl StructuralPartialEq for ReadOperation
Auto Trait Implementations§
impl Freeze for ReadOperation
impl RefUnwindSafe for ReadOperation
impl Send for ReadOperation
impl Sync for ReadOperation
impl Unpin for ReadOperation
impl UnsafeUnpin for ReadOperation
impl UnwindSafe for ReadOperation
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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