pub struct RetrieveStep {
pub store_name: String,
pub where_expr: String,
pub alias: String,
pub order_by: String,
pub limit_expr: String,
pub loc: Loc,
}Fields§
§store_name: String§where_expr: String§alias: String§order_by: String§Fase 67.b — optional order_by: clause: a closed
comma-separated list of column [asc|desc] (same identifier
discipline as where: columns — no injection). Empty = no
ordering. Raw string, parsed + validated by the runtime
(filter::render_bounds) and at axon check (§38.d axon-T807).
limit_expr: String§Fase 67.b — optional limit: clause: a u32 literal OR a
${binding} resolved to a u32 at runtime. Empty = no limit.
Raw string ("100" or "${max}"), validated at axon check
(§38.d axon-T808).
loc: LocTrait Implementations§
Auto Trait Implementations§
impl Freeze for RetrieveStep
impl RefUnwindSafe for RetrieveStep
impl Send for RetrieveStep
impl Sync for RetrieveStep
impl Unpin for RetrieveStep
impl UnsafeUnpin for RetrieveStep
impl UnwindSafe for RetrieveStep
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.