pub struct ParsedCreateUser {
pub username: String,
pub role: String,
}Expand description
Parsed CREATE USER statement.
Fields§
§username: StringUsername.
role: StringRole to assign.
Trait Implementations§
Source§impl Clone for ParsedCreateUser
impl Clone for ParsedCreateUser
Source§fn clone(&self) -> ParsedCreateUser
fn clone(&self) -> ParsedCreateUser
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 moreAuto Trait Implementations§
impl Freeze for ParsedCreateUser
impl RefUnwindSafe for ParsedCreateUser
impl Send for ParsedCreateUser
impl Sync for ParsedCreateUser
impl Unpin for ParsedCreateUser
impl UnsafeUnpin for ParsedCreateUser
impl UnwindSafe for ParsedCreateUser
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