pub struct Left<S: ORECipher, const N: usize> where
    <S as ORECipher>::LeftBlockType: CipherTextBlock,  {
    pub f: [S::LeftBlockType; N],
    pub xt: [u8; N],
}Fields
f: [S::LeftBlockType; N]xt: [u8; N]Implementations
Trait Implementations
sourceimpl<S: Clone + ORECipher, const N: usize> Clone for Left<S, N> where
    <S as ORECipher>::LeftBlockType: CipherTextBlock,
    S::LeftBlockType: Clone, 
 
impl<S: Clone + ORECipher, const N: usize> Clone for Left<S, N> where
    <S as ORECipher>::LeftBlockType: CipherTextBlock,
    S::LeftBlockType: Clone, 
sourceimpl<S: Debug + ORECipher, const N: usize> Debug for Left<S, N> where
    <S as ORECipher>::LeftBlockType: CipherTextBlock,
    S::LeftBlockType: Debug, 
 
impl<S: Debug + ORECipher, const N: usize> Debug for Left<S, N> where
    <S as ORECipher>::LeftBlockType: CipherTextBlock,
    S::LeftBlockType: Debug, 
impl<S: Copy + ORECipher, const N: usize> Copy for Left<S, N> where
    <S as ORECipher>::LeftBlockType: CipherTextBlock,
    S::LeftBlockType: Copy, 
Auto Trait Implementations
impl<S, const N: usize> RefUnwindSafe for Left<S, N> where
    <S as ORECipher>::LeftBlockType: RefUnwindSafe, 
impl<S, const N: usize> Send for Left<S, N> where
    <S as ORECipher>::LeftBlockType: Send, 
impl<S, const N: usize> Sync for Left<S, N> where
    <S as ORECipher>::LeftBlockType: Sync, 
impl<S, const N: usize> Unpin for Left<S, N> where
    <S as ORECipher>::LeftBlockType: Unpin, 
impl<S, const N: usize> UnwindSafe for Left<S, N> where
    <S as ORECipher>::LeftBlockType: UnwindSafe, 
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
    T: Clone, 
 
impl<T> ToOwned for T where
    T: Clone, 
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
 
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more