Enum rustls::unbuffered::EncryptError
source · pub enum EncryptError {
InsufficientSize(InsufficientSizeError),
EncryptExhausted,
}
Expand description
Errors that may arise when encrypting application data
Variants§
InsufficientSize(InsufficientSizeError)
Provided buffer was too small
EncryptExhausted
Encrypter has been exhausted
Trait Implementations§
source§impl Debug for EncryptError
impl Debug for EncryptError
source§impl Display for EncryptError
impl Display for EncryptError
source§impl Error for EncryptError
impl Error for EncryptError
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 From<EncryptError> for EarlyDataError
impl From<EncryptError> for EarlyDataError
source§fn from(v: EncryptError) -> Self
fn from(v: EncryptError) -> Self
Converts to this type from the input type.
source§impl From<InsufficientSizeError> for EncryptError
impl From<InsufficientSizeError> for EncryptError
source§fn from(v: InsufficientSizeError) -> Self
fn from(v: InsufficientSizeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EncryptError
impl RefUnwindSafe for EncryptError
impl Send for EncryptError
impl Sync for EncryptError
impl Unpin for EncryptError
impl UnwindSafe for EncryptError
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