Options

Struct Options 

Source
pub struct Options {
    pub blksize: Option<u16>,
    pub timeout: Option<u8>,
    pub tsize: Option<u64>,
    pub windowsize: Option<u16>,
}
Expand description

TFTP transfer options. Defined in RFC-2347.

Fields§

§blksize: Option<u16>

Block size; 8-65464 inclusive. Defined in RFC-2348.

§timeout: Option<u8>

Time-out; 1-255 seconds, inclusive. Defined in RFC-2349.

§tsize: Option<u64>

Transfer size; 0 for query. Defined in RFC-2349.

§windowsize: Option<u16>

Window size; 1-65535. Defined in RFC-7440.

Implementations§

Source§

impl Options

Source

pub fn new() -> Options

Source

pub fn is_set(&self) -> bool

Is one or more of the options set?

Source

pub fn read<'a>(reader: &mut PacketReader<'a>) -> Result<Self>

Read options from the given reader.

Source

pub fn write(self, writer: &mut PacketWriter<'_>) -> Result<()>

Write options to the given writer.

Source

pub fn parse<'a>(buf: &'a [u8]) -> Result<Self, String>

Parse options from the given buffer.

Note that errors arising from this method are strings.

Trait Implementations§

Source§

impl Debug for Options

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

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<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, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

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.
Source§

impl<T> SendSyncUnwindSafe for T
where T: Send + Sync + UnwindSafe + ?Sized,