pub struct PrepareQueriesInput {
pub name: Ident,
pub read_queries: Vec<Ident>,
pub write_queries: Vec<Ident>,
}
Expand description
Options for the prepare_queries!
macro.
Fields§
§name: Ident
The name of the struct to generate.
read_queries: Vec<Ident>
The queries to attach to the struct.
write_queries: Vec<Ident>
Write queries to attach to the struct.
Trait Implementations§
Source§impl Parse for PrepareQueriesInput
impl Parse for PrepareQueriesInput
fn parse(input: ParseStream<'_>) -> Result<Self>
Auto Trait Implementations§
impl Freeze for PrepareQueriesInput
impl RefUnwindSafe for PrepareQueriesInput
impl !Send for PrepareQueriesInput
impl !Sync for PrepareQueriesInput
impl Unpin for PrepareQueriesInput
impl UnwindSafe for PrepareQueriesInput
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