Enum git_packetline::decode::PacketLineOrWantedSize[][src]

pub enum PacketLineOrWantedSize<'a> {
    Line(PacketLineRef<'a>),
    Wanted(u16),
}
Expand description

The result of hex_prefix() indicating either a special packet line or the amount of wanted bytes

Variants

Line(PacketLineRef<'a>)

The special kind of packet line decoded from the hex prefix. It never contains actual data.

Tuple Fields of Line

0: PacketLineRef<'a>
Wanted(u16)

The amount of bytes indicated by the hex prefix of the packet line.

Tuple Fields of Wanted

0: u16

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.