Struct InsufficientSizeError
pub struct InsufficientSizeError {
pub required_size: usize,
}Available on crate feature
tls only.Expand description
Provided buffer was too small
Fields§
§required_size: usizebuffer must be at least this size
Trait Implementations§
§impl Clone for InsufficientSizeError
impl Clone for InsufficientSizeError
§fn clone(&self) -> InsufficientSizeError
fn clone(&self) -> InsufficientSizeError
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 more§impl Debug for InsufficientSizeError
impl Debug for InsufficientSizeError
§impl From<InsufficientSizeError> for EncodeError
impl From<InsufficientSizeError> for EncodeError
§fn from(v: InsufficientSizeError) -> EncodeError
fn from(v: InsufficientSizeError) -> EncodeError
Converts to this type from the input type.
§impl From<InsufficientSizeError> for EncryptError
impl From<InsufficientSizeError> for EncryptError
§fn from(v: InsufficientSizeError) -> EncryptError
fn from(v: InsufficientSizeError) -> EncryptError
Converts to this type from the input type.
impl Copy for InsufficientSizeError
Auto Trait Implementations§
impl Freeze for InsufficientSizeError
impl RefUnwindSafe for InsufficientSizeError
impl Send for InsufficientSizeError
impl Sync for InsufficientSizeError
impl Unpin for InsufficientSizeError
impl UnwindSafe for InsufficientSizeError
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more