pub enum ConvertResult {
Query(String),
Deferred(Box<dyn DeferredExpression>),
}Expand description
Return type for conversion methods that may produce a direct string or a deferred expression.
Variants§
Query(String)
Deferred(Box<dyn DeferredExpression>)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ConvertResult
impl !RefUnwindSafe for ConvertResult
impl Send for ConvertResult
impl Sync for ConvertResult
impl Unpin for ConvertResult
impl UnsafeUnpin for ConvertResult
impl !UnwindSafe for ConvertResult
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