[][src]Struct isilon::models::NamespaceObject

pub struct NamespaceObject {
    pub access_time: Option<String>,
    pub atime_val: Option<i32>,
    pub block_size: Option<i32>,
    pub blocks: Option<i32>,
    pub btime_val: Option<i32>,
    pub change_time: Option<String>,
    pub create_time: Option<String>,
    pub ctime_val: Option<i32>,
    pub gid: Option<i32>,
    pub group: Option<String>,
    pub id: Option<i32>,
    pub is_hidden: Option<bool>,
    pub last_modified: Option<String>,
    pub mode: Option<String>,
    pub mtime_val: Option<i32>,
    pub name: Option<String>,
    pub nlink: Option<i32>,
    pub owner: Option<String>,
    pub size: Option<u64>,
    pub stub: Option<bool>,
    pub _type: Option<String>,
    pub uid: Option<i32>,
}

Fields

access_time: Option<String>

Specifies the date when the object was last accessed in HTTP date/time format.

atime_val: Option<i32>

Specifies the time when the object was last accessed in UNIX Epoch format.

block_size: Option<i32>

Specifies the block size of the object.

blocks: Option<i32>

Specifies the number of blocks that compose the object.

btime_val: Option<i32>

Specifies the time when the object data was created in UNIX Epoch format.

change_time: Option<String>

Specifies the date when the object was last changed (including data and metadata changes) in HTTP date/time format.

create_time: Option<String>

Specifies the date when the object data was created in HTTP date/time format.

ctime_val: Option<i32>

Specifies the time when the object was last changed (including data and metadata changes) in UNIX Epoch format.

gid: Option<i32>

Specifies the GID for the owner.

group: Option<String>

Specifies the group name for the owner of the object.

id: Option<i32>

Specifies the object ID, which is also the INODE number.

is_hidden: Option<bool>

Specifies whether the file is hidden or not.

last_modified: Option<String>

Specifies the time when the object data was last modified in HTTP date/time format.

mode: Option<String>

Specifies the UNIX mode octal number.

mtime_val: Option<i32>

Specifies the time when the object data was last modified in UNIX Epoch format.

name: Option<String>

Specifies the name of the object.

nlink: Option<i32>

Specifies the number of hard links to the object.

owner: Option<String>

Specifies the user name for the owner of the object.

size: Option<u64>

Specifies the size of the object in bytes.

stub: Option<bool>_type: Option<String>

Specifies the object type, which can be one of the following values: container, object, pipe, character_device, block_device, symbolic_link, socket, or whiteout_file.

uid: Option<i32>

Specifies the UID for the owner.

Trait Implementations

impl Debug for NamespaceObject[src]

impl Serialize for NamespaceObject[src]

impl<'de> Deserialize<'de> for NamespaceObject[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T