[][src]Struct nsl_duplex_d2::File

pub struct File {
    pub name: String,
    pub body: Vec<u8>,
}

Structure for files

Fields

name: String

Name of file

body: Vec<u8>

Contents of file

Methods

impl File[src]

pub fn new(name: &str, body: &[u8]) -> Self[src]

Create a new file object by copying name and body.

pub fn parse(input: &[u8]) -> IResult<&[u8], File>[src]

Create a new file object by parsing raw serial data.

pub fn encode(&self) -> Vec<u8>[src]

Encode a file object to raw serial data.

Trait Implementations

impl PartialEq<File> for File[src]

impl Debug for File[src]

Auto Trait Implementations

impl Send for File

impl Unpin for File

impl Sync for File

impl UnwindSafe for File

impl RefUnwindSafe for File

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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