Struct rs9p::fcall::DirEntryData[][src]

pub struct DirEntryData {
    pub data: Vec<DirEntry>,
}

Directory entry array

Fields

data: Vec<DirEntry>

Implementations

impl DirEntryData[src]

pub fn new() -> DirEntryData[src]

pub fn with(v: Vec<DirEntry>) -> DirEntryData[src]

pub fn data(&self) -> &[DirEntry][src]

pub fn size(&self) -> u32[src]

pub fn push(&mut self, entry: DirEntry)[src]

Trait Implementations

impl Clone for DirEntryData[src]

impl Debug for DirEntryData[src]

impl Decodable for DirEntryData[src]

impl Encodable for DirEntryData[src]

impl Eq for DirEntryData[src]

impl Hash for DirEntryData[src]

impl Ord for DirEntryData[src]

impl PartialEq<DirEntryData> for DirEntryData[src]

impl PartialOrd<DirEntryData> for DirEntryData[src]

impl StructuralEq for DirEntryData[src]

impl StructuralPartialEq for DirEntryData[src]

Auto Trait Implementations

impl RefUnwindSafe for DirEntryData

impl Send for DirEntryData

impl Sync for DirEntryData

impl Unpin for DirEntryData

impl UnwindSafe for DirEntryData

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.