pub struct GetPasswordDataResult {
pub instance_id: Option<String>,
pub password_data: Option<String>,
pub timestamp: Option<String>,
}Fields§
§instance_id: Option<String>The ID of the Windows instance.
password_data: Option<String>The password of the instance. Returns an empty string if the password is not available.
timestamp: Option<String>The time the data was last updated.
Trait Implementations§
Source§impl Clone for GetPasswordDataResult
impl Clone for GetPasswordDataResult
Source§fn clone(&self) -> GetPasswordDataResult
fn clone(&self) -> GetPasswordDataResult
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 GetPasswordDataResult
impl Debug for GetPasswordDataResult
Source§impl Default for GetPasswordDataResult
impl Default for GetPasswordDataResult
Source§fn default() -> GetPasswordDataResult
fn default() -> GetPasswordDataResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetPasswordDataResult
impl PartialEq for GetPasswordDataResult
impl StructuralPartialEq for GetPasswordDataResult
Auto Trait Implementations§
impl Freeze for GetPasswordDataResult
impl RefUnwindSafe for GetPasswordDataResult
impl Send for GetPasswordDataResult
impl Sync for GetPasswordDataResult
impl Unpin for GetPasswordDataResult
impl UnwindSafe for GetPasswordDataResult
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