pub struct PasswordModifyResp {
pub gen_pass: String,
}Expand description
Password Modify response.
If the server has generated a new password, it must send its value in the response.
Fields§
§gen_pass: StringTrait Implementations§
Source§impl Clone for PasswordModifyResp
impl Clone for PasswordModifyResp
Source§fn clone(&self) -> PasswordModifyResp
fn clone(&self) -> PasswordModifyResp
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 PasswordModifyResp
impl Debug for PasswordModifyResp
Source§impl ExopParser for PasswordModifyResp
impl ExopParser for PasswordModifyResp
Source§fn parse(val: &[u8]) -> PasswordModifyResp
fn parse(val: &[u8]) -> PasswordModifyResp
Convert the raw BER value into an exop-specific struct.
Auto Trait Implementations§
impl Freeze for PasswordModifyResp
impl RefUnwindSafe for PasswordModifyResp
impl Send for PasswordModifyResp
impl Sync for PasswordModifyResp
impl Unpin for PasswordModifyResp
impl UnwindSafe for PasswordModifyResp
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