pub struct PasswordAlgorithms;Expand description
The PASSWORD-ALGORITHMS attribute may be present in requests and responses. It contains the list of algorithms that the server can use to derive the long-term password.
The set of known algorithms is maintained by IANA. The initial set defined by this specification is found in Section 18.5.
The attribute contains a list of algorithm numbers and variable length parameters. The algorithm number is a 16-bit value as defined in Section 18.5. The parameters start with the length (prior to padding) of the parameters as a 16-bit value, followed by the parameters that are specific to each algorithm. The parameters are padded to a 32-bit boundary, in the same manner as an attribute.
Trait Implementations§
Source§impl<'a> Attribute<'a> for PasswordAlgorithms
impl<'a> Attribute<'a> for PasswordAlgorithms
Source§const TYPE: AttributeType = AttributeType::PasswordAlgorithms
const TYPE: AttributeType = AttributeType::PasswordAlgorithms
current attribute type.
type Error = Error
Source§type Item = Vec<PasswordAlgorithm>
type Item = Vec<PasswordAlgorithm>
current attribute inner type.
Auto Trait Implementations§
impl Freeze for PasswordAlgorithms
impl RefUnwindSafe for PasswordAlgorithms
impl Send for PasswordAlgorithms
impl Sync for PasswordAlgorithms
impl Unpin for PasswordAlgorithms
impl UnwindSafe for PasswordAlgorithms
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request