pub enum Direction {
Down,
Up,
}Expand description
Travel direction for system frames.
Down = source → sink; Up = sink → source (errors, acks).
DataFrame carries no direction — media is always downstream.
Variants§
Down
Source → sink (lifecycle, interrupts flowing forward through the pipeline).
Up
Sink → source (errors, acknowledgements flowing back upstream).
Trait Implementations§
impl Copy for Direction
impl Eq for Direction
impl StructuralPartialEq for Direction
Auto Trait Implementations§
impl Freeze for Direction
impl RefUnwindSafe for Direction
impl Send for Direction
impl Sync for Direction
impl Unpin for Direction
impl UnsafeUnpin for Direction
impl UnwindSafe for Direction
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