Enum sysadmin_bindings::SysadminValue [] [src]

pub enum SysadminValue {
    Int32(i32),
    Strval(String),
    Bool(bool),
    Int32List(Vec<i32>),
    BoolList(Vec<bool>),
    StrvalList(Vec<String>),
}

Variants

Trait Implementations

impl Debug for SysadminValue
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for SysadminValue
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for SysadminValue
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl From<i32> for SysadminValue
[src]

[src]

Performs the conversion.

impl From<String> for SysadminValue
[src]

[src]

Performs the conversion.

impl<'a> From<&'a str> for SysadminValue
[src]

[src]

Performs the conversion.

impl From<bool> for SysadminValue
[src]

[src]

Performs the conversion.

impl From<Vec<i32>> for SysadminValue
[src]

[src]

Performs the conversion.

impl From<Vec<bool>> for SysadminValue
[src]

[src]

Performs the conversion.

impl From<Vec<String>> for SysadminValue
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for SysadminValue

impl Sync for SysadminValue