pub struct Right<S: ORECipher, const N: usize> {
pub nonce: [u8; 16],
pub data: [S::RightBlockType; N],
}
Fields
nonce: [u8; 16]
data: [S::RightBlockType; N]
Implementations
Trait Implementations
sourceimpl<S: Clone + ORECipher, const N: usize> Clone for Right<S, N> where
S::RightBlockType: Clone,
impl<S: Clone + ORECipher, const N: usize> Clone for Right<S, N> where
S::RightBlockType: Clone,
sourceimpl<S: Debug + ORECipher, const N: usize> Debug for Right<S, N> where
S::RightBlockType: Debug,
impl<S: Debug + ORECipher, const N: usize> Debug for Right<S, N> where
S::RightBlockType: Debug,
impl<S: Copy + ORECipher, const N: usize> Copy for Right<S, N> where
S::RightBlockType: Copy,
Auto Trait Implementations
impl<S, const N: usize> RefUnwindSafe for Right<S, N> where
<S as ORECipher>::RightBlockType: RefUnwindSafe,
impl<S, const N: usize> Send for Right<S, N> where
<S as ORECipher>::RightBlockType: Send,
impl<S, const N: usize> Sync for Right<S, N> where
<S as ORECipher>::RightBlockType: Sync,
impl<S, const N: usize> Unpin for Right<S, N> where
<S as ORECipher>::RightBlockType: Unpin,
impl<S, const N: usize> UnwindSafe for Right<S, N> where
<S as ORECipher>::RightBlockType: 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