pub struct FirstSrpSpec {
pub salt: Vec<u8>,
pub verification_key: Vec<u8>,
pub is_empty: bool,
}
Fields§
§salt: Vec<u8>
§verification_key: Vec<u8>
§is_empty: bool
Trait Implementations§
Source§impl Clone for FirstSrpSpec
impl Clone for FirstSrpSpec
Source§fn clone(&self) -> FirstSrpSpec
fn clone(&self) -> FirstSrpSpec
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 FirstSrpSpec
impl Debug for FirstSrpSpec
Source§impl Deserialize for FirstSrpSpec
impl Deserialize for FirstSrpSpec
Source§type Output = FirstSrpSpec
type Output = FirstSrpSpec
Output should be Self, except for wrapper types.
fn deserialize(deser: &mut Deserializer<'_>) -> DeserializeResult<Self>
Source§impl From<FirstSrpSpec> for ToServerCommand
impl From<FirstSrpSpec> for ToServerCommand
Source§fn from(value: FirstSrpSpec) -> Self
fn from(value: FirstSrpSpec) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FirstSrpSpec
impl PartialEq for FirstSrpSpec
Source§impl Serialize for FirstSrpSpec
impl Serialize for FirstSrpSpec
type Input = FirstSrpSpec
fn serialize<S: Serializer>(value: &Self::Input, ser: &mut S) -> SerializeResult
impl StructuralPartialEq for FirstSrpSpec
Auto Trait Implementations§
impl Freeze for FirstSrpSpec
impl RefUnwindSafe for FirstSrpSpec
impl Send for FirstSrpSpec
impl Sync for FirstSrpSpec
impl Unpin for FirstSrpSpec
impl UnwindSafe for FirstSrpSpec
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