pub struct Fetch {
pub direction: String,
pub count: Option<Expression>,
pub percent: bool,
pub rows: bool,
pub with_ties: bool,
}Expand description
FETCH FIRST/NEXT clause (SQL standard)
Fields§
§direction: StringFIRST or NEXT
count: Option<Expression>Count expression (optional)
percent: boolPERCENT modifier
rows: boolROWS or ROW keyword present
with_ties: boolWITH TIES modifier
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Fetch
impl<'de> Deserialize<'de> for Fetch
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
impl StructuralPartialEq for Fetch
Auto Trait Implementations§
impl Freeze for Fetch
impl RefUnwindSafe for Fetch
impl Send for Fetch
impl Sync for Fetch
impl Unpin for Fetch
impl UnwindSafe for Fetch
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