[][src]Struct isilon::models::WormProperties

pub struct WormProperties {
    pub autocommit_delay: Option<i32>,
    pub domain_id: Option<i32>,
    pub domain_path: Option<String>,
    pub worm_committed: Option<bool>,
    pub worm_ctime: Option<i32>,
    pub worm_override_retention_date: Option<String>,
    pub worm_override_retention_date_val: Option<i32>,
    pub worm_retention_date: Option<String>,
    pub worm_retention_date_val: Option<i32>,
}

Fields

autocommit_delay: Option<i32>

Autocommit delay.

domain_id: Option<i32>

WORM domain ID.

domain_path: Option<String>

WORM domain path.

worm_committed: Option<bool>

Indicates whether the file was committed to the WORM state.

worm_ctime: Option<i32>

WORM change time.

worm_override_retention_date: Option<String>

Provides the override retention date that is set on the SmartLock directory where the file resides.

worm_override_retention_date_val: Option<i32>

Provides the override retention date in seconds from UNIX Epoch or UTC.

worm_retention_date: Option<String>

Provides the retention expiration date in Coordinated Universal Time (such as UTC/GMT).

worm_retention_date_val: Option<i32>

Provides the retention expiration date in seconds from UNIX Epoch or UTC.

Trait Implementations

impl Debug for WormProperties[src]

impl Serialize for WormProperties[src]

impl<'de> Deserialize<'de> for WormProperties[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