[][src]Struct ax25::frame::FrameReject

pub struct FrameReject {
    pub final_bit: bool,
    pub rejected_control_field_raw: u8,
    pub z: bool,
    pub y: bool,
    pub x: bool,
    pub w: bool,
    pub receive_sequence: u8,
    pub send_sequence: u8,
    pub command_response: CommandResponse,
}

FRMR Unnumbered (U) frame. Flags correspond to names in the AX.25 specification.

Fields

final_bit: boolrejected_control_field_raw: u8

A raw copy of the control field in the frame that was rejected

z: bool

The attached control field contained an invalid Receive Sequence Number

y: bool

The information field of a received frame exceeded the maximum allowable length.

x: bool

A U or S frame was received that contained an information field.

w: bool

The received control field was invalid or not implemented.

receive_sequence: u8send_sequence: u8command_response: CommandResponse

Trait Implementations

impl Debug for FrameReject[src]

impl PartialEq<FrameReject> for FrameReject[src]

impl StructuralPartialEq for FrameReject[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.