Skip to main content

Sent

Enum Sent 

Source
pub enum Sent {
    Accepted,
    MustDrain,
}
Expand description

What a submission answered.

Returned by every send_packet / send_frame / send_eof in this crate — VideoStreamDecoder, AudioStreamDecoder, SubtitleDecoder, AudioResampler, and their future mirrors.

§The name

MustDrain means nothing was sent, so the type’s name is read as what the send call answered rather than as a claim that a send happened — exactly as Received::NeedsInput is read. The pair is named for the two calls, not for the two outcomes, because that is what a caller is holding when it reads one.

§The feeder loop

use mediadecode::{Received, Sent, decoder::AudioStreamDecoder};
/// Feeds one packet, draining as required, and delivers every frame
/// it makes ready. Answers `true` once the stream is over.
fn feed<D: AudioStreamDecoder>(
  decoder: &mut D,
  packet: &Packet<D>,
  dst: &mut Frame<D>,
  mut on_frame: impl FnMut(&Frame<D>),
) -> Result<bool, D::Error> {
  loop {
    // `?` means what it says on both faces: only a fault leaves.
    match decoder.send_packet(packet)? {
      Sent::Accepted => break,
      // Not a failed submission — a full decoder. Drain and
      // re-offer *this same packet*; nothing consumed it.
      Sent::MustDrain => loop {
        match decoder.receive_frame(dst)? {
          Received::Frame => on_frame(dst),
          Received::NeedsInput | Received::Ended => break,
        }
      },
    }
  }
  loop {
    match decoder.receive_frame(dst)? {
      Received::Frame => on_frame(dst),
      Received::NeedsInput => return Ok(false),
      Received::Ended => return Ok(true),
    }
  }
}

That loop is the point. Under the older convention it could not be written against the trait at all: “drain me first” and “this packet is damaged” were both Err, indistinguishable to a generic consumer, so the idiom that survived was to offer the packet twice — submit, drain on any failure, submit again, and treat the second failure as real. Twice, because once meant nothing.

Variants§

§

Accepted

The session took it. A packet is consumed; an end-of-stream is recorded.

§

MustDrain

Nothing was consumed. The session cannot take more until its output is drained: call receive_frame until it stops producing, then offer the same packet again.

This is back pressure, not refusal. The submission left no trace — the packet is still the caller’s to re-send, and the session’s state is exactly what it was before the call.

Implementations§

Source§

impl Sent

Source

pub const fn is_accepted(&self) -> bool

Returns true if this value is of type Accepted. Returns false otherwise

Source

pub const fn is_must_drain(&self) -> bool

Returns true if this value is of type MustDrain. Returns false otherwise

Trait Implementations§

Source§

impl Clone for Sent

Source§

fn clone(&self) -> Sent

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Sent

Source§

impl Debug for Sent

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for Sent

Source§

impl Hash for Sent

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for Sent

Source§

fn eq(&self, other: &Sent) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Sent

Auto Trait Implementations§

§

impl Freeze for Sent

§

impl RefUnwindSafe for Sent

§

impl Send for Sent

§

impl Sync for Sent

§

impl Unpin for Sent

§

impl UnsafeUnpin for Sent

§

impl UnwindSafe for Sent

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

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.