Skip to main content

CodingWriter

Struct CodingWriter 

Source
pub struct CodingWriter<R, F, M, W, const BUF: usize> {
    pub randomizer: R,
    pub fec: F,
    pub framer: M,
    pub writer: W,
    /* private fields */
}
Expand description

Composes randomizer → FEC → framer → physical writer into a single CodingWrite.

Fields§

§randomizer: R

Randomizer applied to the transfer frame.

§fec: F

Forward error-correction encoder.

§framer: M

Framer (e.g. ASM, CLTU).

§writer: W

Physical layer writer.

Implementations§

Source§

impl<R, F, M, W, const BUF: usize> CodingWriter<R, F, M, W, BUF>

Source

pub fn new(randomizer: R, fec: F, framer: M, writer: W) -> Self

Creates a new write pipeline.

Trait Implementations§

Source§

impl<R, F, M, W, const BUF: usize> CodingWrite for CodingWriter<R, F, M, W, BUF>
where R: Randomizer, F: FecEncoder, F::Error: Error, M: Framer, M::Error: Error, W: PhysicalWrite, W::Error: Error,

Source§

type Error = CodingWriteError<<F as FecEncoder>::Error, <M as Framer>::Error, <W as PhysicalWrite>::Error>

Error type for write operations.
Source§

async fn write(&mut self, frame: &[u8]) -> Result<(), Self::Error>

Encodes and writes a transfer frame.

Auto Trait Implementations§

§

impl<R, F, M, W, const BUF: usize> Freeze for CodingWriter<R, F, M, W, BUF>
where R: Freeze, F: Freeze, M: Freeze, W: Freeze,

§

impl<R, F, M, W, const BUF: usize> RefUnwindSafe for CodingWriter<R, F, M, W, BUF>

§

impl<R, F, M, W, const BUF: usize> Send for CodingWriter<R, F, M, W, BUF>
where R: Send, F: Send, M: Send, W: Send,

§

impl<R, F, M, W, const BUF: usize> Sync for CodingWriter<R, F, M, W, BUF>
where R: Sync, F: Sync, M: Sync, W: Sync,

§

impl<R, F, M, W, const BUF: usize> Unpin for CodingWriter<R, F, M, W, BUF>
where R: Unpin, F: Unpin, M: Unpin, W: Unpin,

§

impl<R, F, M, W, const BUF: usize> UnsafeUnpin for CodingWriter<R, F, M, W, BUF>

§

impl<R, F, M, W, const BUF: usize> UnwindSafe for CodingWriter<R, F, M, W, BUF>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.