pub struct CreatePrincipalStatement {
pub token: Token,
pub name: Identifier,
pub password: Option<String>,
}Fields§
§token: Token§name: Identifier§password: Option<String>Plaintext exists only in the transient parsed statement. Display is deliberately redacted and the catalog stores only a verifier.
Trait Implementations§
Source§impl Clone for CreatePrincipalStatement
impl Clone for CreatePrincipalStatement
Source§fn clone(&self) -> CreatePrincipalStatement
fn clone(&self) -> CreatePrincipalStatement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CreatePrincipalStatement
impl Debug for CreatePrincipalStatement
Source§impl Display for CreatePrincipalStatement
impl Display for CreatePrincipalStatement
Source§impl PartialEq for CreatePrincipalStatement
impl PartialEq for CreatePrincipalStatement
impl StructuralPartialEq for CreatePrincipalStatement
Auto Trait Implementations§
impl Freeze for CreatePrincipalStatement
impl RefUnwindSafe for CreatePrincipalStatement
impl Send for CreatePrincipalStatement
impl Sync for CreatePrincipalStatement
impl Unpin for CreatePrincipalStatement
impl UnsafeUnpin for CreatePrincipalStatement
impl UnwindSafe for CreatePrincipalStatement
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