Struct rs9p::fcall::Qid[][src]

pub struct Qid {
    pub typ: QidType,
    pub version: u32,
    pub path: u64,
}

Server side data type for path tracking

The server’s unique identification for the file being accessed

Protocol

9P2000/9P2000.L

Fields

typ: QidType

Specify whether the file is a directory, append-only file, etc.

version: u32

Version number for a file; typically, it is incremented every time the file is modified

path: u64

An integer which is unique among all files in the hierarchy

Trait Implementations

impl Clone for Qid[src]

impl Copy for Qid[src]

impl Debug for Qid[src]

impl Decodable for Qid[src]

impl Default for Qid[src]

impl Encodable for Qid[src]

impl Eq for Qid[src]

impl Hash for Qid[src]

impl Ord for Qid[src]

impl PartialEq<Qid> for Qid[src]

impl PartialOrd<Qid> for Qid[src]

impl StructuralEq for Qid[src]

impl StructuralPartialEq for Qid[src]

Auto Trait Implementations

impl RefUnwindSafe for Qid

impl Send for Qid

impl Sync for Qid

impl Unpin for Qid

impl UnwindSafe for Qid

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.