pub struct FarfalleOutputGenerator<C: FarfalleConfig> { /* private fields */ }Expand description
Expansion part in the Farfalle construction.
Trait Implementations§
Source§impl<C: FarfalleConfig> Reader for FarfalleOutputGenerator<C>
impl<C: FarfalleConfig> Reader for FarfalleOutputGenerator<C>
Source§fn capacity(&self) -> usize
fn capacity(&self) -> usize
Return the number of bytes that can still be read from
self. Read moreSource§fn write_to<W: Writer>(
&mut self,
writer: &mut W,
n: usize,
) -> Result<(), WriteTooLargeError>
fn write_to<W: Writer>( &mut self, writer: &mut W, n: usize, ) -> Result<(), WriteTooLargeError>
Source§fn write_to_buf(&mut self, buf: BufMut<'_>) -> Result<(), WriteTooLargeError>
fn write_to_buf(&mut self, buf: BufMut<'_>) -> Result<(), WriteTooLargeError>
Source§fn write_to_slice(&mut self, buf: &mut [u8]) -> Result<(), WriteTooLargeError>
fn write_to_slice(&mut self, buf: &mut [u8]) -> Result<(), WriteTooLargeError>
impl<C: FarfalleConfig> CryptoReader for FarfalleOutputGenerator<C>
Auto Trait Implementations§
impl<C> Freeze for FarfalleOutputGenerator<C>
impl<C> RefUnwindSafe for FarfalleOutputGenerator<C>
impl<C> Send for FarfalleOutputGenerator<C>
impl<C> Sync for FarfalleOutputGenerator<C>
impl<C> Unpin for FarfalleOutputGenerator<C>
impl<C> UnwindSafe for FarfalleOutputGenerator<C>
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