pub struct FetchCursor<'a> {
pub fetch_span: Span,
pub next_span: Option<Span>,
pub from_span: Option<Span>,
pub cursor: Identifier<'a>,
pub into_span: Span,
pub variables: Vec<Identifier<'a>>,
}Expand description
MariaDB/MySQL FETCH cursor statement.
FETCH [NEXT] [FROM] cursor INTO var, ...
Fields§
§fetch_span: Span§next_span: Option<Span>§from_span: Option<Span>§cursor: Identifier<'a>§into_span: Span§variables: Vec<Identifier<'a>>Trait Implementations§
Source§impl<'a> Clone for FetchCursor<'a>
impl<'a> Clone for FetchCursor<'a>
Source§fn clone(&self) -> FetchCursor<'a>
fn clone(&self) -> FetchCursor<'a>
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<'a> Debug for FetchCursor<'a>
impl<'a> Debug for FetchCursor<'a>
Auto Trait Implementations§
impl<'a> Freeze for FetchCursor<'a>
impl<'a> RefUnwindSafe for FetchCursor<'a>
impl<'a> Send for FetchCursor<'a>
impl<'a> Sync for FetchCursor<'a>
impl<'a> Unpin for FetchCursor<'a>
impl<'a> UnsafeUnpin for FetchCursor<'a>
impl<'a> UnwindSafe for FetchCursor<'a>
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