[][src]Enum rdp::model::data::MessageOption

pub enum MessageOption {
    SkipField(String),
    Size(Stringusize),
    None,
}

Allow to a son to inform parent of something special

IN tree type a son can control parser of a parent node by providing some type depend fields

This is control by the options function of Message Trait

Variants

SkipField(String)

You ask to skip a field during reading operation

Size(Stringusize)

You ask to limit the size of reading buffer for a particular field

None

Non option

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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,