pub struct SelectExpression {
pub sources: Vec<SourceSelector>,
pub sort: Option<Vec<PropertySort>>,
pub limit: Option<i32>,
}Expand description
Expression for selecting properties from a list of views.
Fields§
§sources: Vec<SourceSelector>List of views to retrieve from.
sort: Option<Vec<PropertySort>>Optional sort on returned values.
limit: Option<i32>Maximum number of values to return.
Trait Implementations§
Source§impl Clone for SelectExpression
impl Clone for SelectExpression
Source§fn clone(&self) -> SelectExpression
fn clone(&self) -> SelectExpression
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 SelectExpression
impl Debug for SelectExpression
Source§impl<'de> Deserialize<'de> for SelectExpression
impl<'de> Deserialize<'de> for SelectExpression
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 SelectExpression
impl RefUnwindSafe for SelectExpression
impl Send for SelectExpression
impl Sync for SelectExpression
impl Unpin for SelectExpression
impl UnwindSafe for SelectExpression
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