pub struct AuthMechsBitset {
pub legacy_password: bool,
pub srp: bool,
pub first_srp: bool,
}
Fields§
§legacy_password: bool
§srp: bool
§first_srp: bool
Trait Implementations§
Source§impl Clone for AuthMechsBitset
impl Clone for AuthMechsBitset
Source§fn clone(&self) -> AuthMechsBitset
fn clone(&self) -> AuthMechsBitset
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AuthMechsBitset
impl Debug for AuthMechsBitset
Source§impl Deserialize for AuthMechsBitset
impl Deserialize for AuthMechsBitset
Source§type Output = AuthMechsBitset
type Output = AuthMechsBitset
Output should be Self, except for wrapper types.
fn deserialize(deser: &mut Deserializer<'_>) -> DeserializeResult<Self>
Source§impl PartialEq for AuthMechsBitset
impl PartialEq for AuthMechsBitset
Source§impl Serialize for AuthMechsBitset
impl Serialize for AuthMechsBitset
type Input = AuthMechsBitset
fn serialize<S: Serializer>(value: &Self::Input, ser: &mut S) -> SerializeResult
impl StructuralPartialEq for AuthMechsBitset
Auto Trait Implementations§
impl Freeze for AuthMechsBitset
impl RefUnwindSafe for AuthMechsBitset
impl Send for AuthMechsBitset
impl Sync for AuthMechsBitset
impl Unpin for AuthMechsBitset
impl UnwindSafe for AuthMechsBitset
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