pub enum CltuError {
OutputBufferTooSmall {
required: usize,
provided: usize,
},
}Expand description
An error that can occur during CLTU encoding.
Variants§
OutputBufferTooSmall
The provided output buffer is too small to hold the encoded CLTU.
Trait Implementations§
impl Copy for CltuError
impl Eq for CltuError
impl StructuralPartialEq for CltuError
Auto Trait Implementations§
impl Freeze for CltuError
impl RefUnwindSafe for CltuError
impl Send for CltuError
impl Sync for CltuError
impl Unpin for CltuError
impl UnsafeUnpin for CltuError
impl UnwindSafe for CltuError
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