pub struct LdapPasswordModifyRequest {
pub user_identity: Option<String>,
pub old_password: Option<String>,
pub new_password: Option<String>,
}Fields§
§user_identity: Option<String>§old_password: Option<String>§new_password: Option<String>Trait Implementations§
Source§impl Clone for LdapPasswordModifyRequest
impl Clone for LdapPasswordModifyRequest
Source§fn clone(&self) -> LdapPasswordModifyRequest
fn clone(&self) -> LdapPasswordModifyRequest
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 LdapPasswordModifyRequest
impl Debug for LdapPasswordModifyRequest
Source§impl From<LdapPasswordModifyRequest> for LdapExtendedRequest
impl From<LdapPasswordModifyRequest> for LdapExtendedRequest
Source§fn from(value: LdapPasswordModifyRequest) -> LdapExtendedRequest
fn from(value: LdapPasswordModifyRequest) -> LdapExtendedRequest
Converts to this type from the input type.
Source§impl TryFrom<&LdapExtendedRequest> for LdapPasswordModifyRequest
impl TryFrom<&LdapExtendedRequest> for LdapPasswordModifyRequest
Source§type Error = LdapProtoError
type Error = LdapProtoError
The type returned in the event of a conversion error.
Source§fn try_from(
value: &LdapExtendedRequest,
) -> Result<LdapPasswordModifyRequest, <LdapPasswordModifyRequest as TryFrom<&LdapExtendedRequest>>::Error>
fn try_from( value: &LdapExtendedRequest, ) -> Result<LdapPasswordModifyRequest, <LdapPasswordModifyRequest as TryFrom<&LdapExtendedRequest>>::Error>
Performs the conversion.
impl StructuralPartialEq for LdapPasswordModifyRequest
Auto Trait Implementations§
impl Freeze for LdapPasswordModifyRequest
impl RefUnwindSafe for LdapPasswordModifyRequest
impl Send for LdapPasswordModifyRequest
impl Sync for LdapPasswordModifyRequest
impl Unpin for LdapPasswordModifyRequest
impl UnsafeUnpin for LdapPasswordModifyRequest
impl UnwindSafe for LdapPasswordModifyRequest
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