pub struct RDCleanPathErr {
pub error_code: u16,
pub http_status_code: Option<u16>,
pub wsa_last_error: Option<u16>,
pub tls_alert_code: Option<u8>,
}Fields§
§error_code: u16§http_status_code: Option<u16>§wsa_last_error: Option<u16>§tls_alert_code: Option<u8>Trait Implementations§
Source§impl Clone for RDCleanPathErr
impl Clone for RDCleanPathErr
Source§fn clone(&self) -> RDCleanPathErr
fn clone(&self) -> RDCleanPathErr
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 RDCleanPathErr
impl Debug for RDCleanPathErr
Source§impl<'__der_lifetime> DecodeValue<'__der_lifetime> for RDCleanPathErr
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for RDCleanPathErr
Source§impl Display for RDCleanPathErr
impl Display for RDCleanPathErr
Source§impl<'__der_lifetime> EncodeValue for RDCleanPathErr
impl<'__der_lifetime> EncodeValue for RDCleanPathErr
Source§impl Error for RDCleanPathErr
impl Error for RDCleanPathErr
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for RDCleanPathErr
impl PartialEq for RDCleanPathErr
impl Eq for RDCleanPathErr
impl<'__der_lifetime> Sequence<'__der_lifetime> for RDCleanPathErr
impl StructuralPartialEq for RDCleanPathErr
Auto Trait Implementations§
impl Freeze for RDCleanPathErr
impl RefUnwindSafe for RDCleanPathErr
impl Send for RDCleanPathErr
impl Sync for RDCleanPathErr
impl Unpin for RDCleanPathErr
impl UnwindSafe for RDCleanPathErr
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
Source§impl<T> Encode for Twhere
T: EncodeValue + Tagged,
impl<T> Encode for Twhere
T: EncodeValue + Tagged,
Source§fn encoded_len(&self) -> Result<Length, Error>
fn encoded_len(&self) -> Result<Length, Error>
Compute the length of this value in bytes when encoded as ASN.1 DER.
Source§fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided Writer.
Source§fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message.