pub struct GetRandomPasswordResponse {
pub random_password: Option<String>,
}
Fields§
§random_password: Option<String>
A string with the generated password.
Trait Implementations§
Source§impl Clone for GetRandomPasswordResponse
impl Clone for GetRandomPasswordResponse
Source§fn clone(&self) -> GetRandomPasswordResponse
fn clone(&self) -> GetRandomPasswordResponse
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 Debug for GetRandomPasswordResponse
impl Debug for GetRandomPasswordResponse
Source§impl Default for GetRandomPasswordResponse
impl Default for GetRandomPasswordResponse
Source§fn default() -> GetRandomPasswordResponse
fn default() -> GetRandomPasswordResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetRandomPasswordResponse
impl<'de> Deserialize<'de> for GetRandomPasswordResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for GetRandomPasswordResponse
Auto Trait Implementations§
impl Freeze for GetRandomPasswordResponse
impl RefUnwindSafe for GetRandomPasswordResponse
impl Send for GetRandomPasswordResponse
impl Sync for GetRandomPasswordResponse
impl Unpin for GetRandomPasswordResponse
impl UnwindSafe for GetRandomPasswordResponse
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