pub struct Statement {
pub id: String,
pub sql: String,
pub kind: StatementKind,
pub param_names: Vec<String>,
pub nodes: Option<Vec<Node>>,
}
Fields§
§id: String
§sql: String
§kind: StatementKind
§param_names: Vec<String>
§nodes: Option<Vec<Node>>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Statement
impl RefUnwindSafe for Statement
impl Send for Statement
impl Sync for Statement
impl Unpin for Statement
impl UnwindSafe for Statement
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