[][src]Struct isilon::models::SmbSettingsGlobalExtended

pub struct SmbSettingsGlobalExtended {
    pub access_based_share_enum: Option<bool>,
    pub audit_fileshare: Option<String>,
    pub audit_global_sacl: Option<Vec<SmbSettingsGlobalSettingsAuditGlobalSaclItem>>,
    pub audit_logon: Option<String>,
    pub dot_snap_accessible_child: Option<bool>,
    pub dot_snap_accessible_root: Option<bool>,
    pub dot_snap_visible_child: Option<bool>,
    pub dot_snap_visible_root: Option<bool>,
    pub enable_security_signatures: Option<bool>,
    pub guest_user: Option<String>,
    pub ignore_eas: Option<bool>,
    pub onefs_cpu_multiplier: Option<i32>,
    pub onefs_num_workers: Option<i32>,
    pub require_security_signatures: Option<bool>,
    pub server_side_copy: Option<bool>,
    pub server_string: Option<String>,
    pub service: Option<bool>,
    pub srv_cpu_multiplier: Option<i32>,
    pub srv_num_workers: Option<i32>,
    pub support_multichannel: Option<bool>,
    pub support_netbios: Option<bool>,
    pub support_smb2: Option<bool>,
}

Fields

access_based_share_enum: Option<bool>

Only enumerate files and folders the requesting user has access to.

audit_fileshare: Option<String>

Specify level of file share audit events to log.

audit_global_sacl: Option<Vec<SmbSettingsGlobalSettingsAuditGlobalSaclItem>>

Specifies a list of permissions to audit.

audit_logon: Option<String>

Specify the level of logon audit events to log.

dot_snap_accessible_child: Option<bool>

Allow access to .snapshot directories in share subdirectories.

dot_snap_accessible_root: Option<bool>

Allow access to the .snapshot directory in the root of the share.

dot_snap_visible_child: Option<bool>

Show .snapshot directories in share subdirectories.

dot_snap_visible_root: Option<bool>

Show the .snapshot directory in the root of a share.

enable_security_signatures: Option<bool>

Indicates whether the server supports signed SMB packets.

guest_user: Option<String>

Specifies the fully-qualified user to use for guest access.

ignore_eas: Option<bool>

Specify whether to ignore EAs on files.

onefs_cpu_multiplier: Option<i32>

Specify the number of OneFS driver worker threads per CPU.

onefs_num_workers: Option<i32>

Set the maximum number of OneFS driver worker threads.

require_security_signatures: Option<bool>

Indicates whether the server requires signed SMB packets.

server_side_copy: Option<bool>

Enable Server Side Copy.

server_string: Option<String>

Provides a description of the server.

service: Option<bool>

Specify whether service is enabled.

srv_cpu_multiplier: Option<i32>

Specify the number of SRV service worker threads per CPU.

srv_num_workers: Option<i32>

Set the maximum number of SRV service worker threads.

support_multichannel: Option<bool>

Support multichannel.

support_netbios: Option<bool>

Support NetBIOS.

support_smb2: Option<bool>

Support the SMB2 protocol on the server.

Trait Implementations

impl Debug for SmbSettingsGlobalExtended[src]

impl Serialize for SmbSettingsGlobalExtended[src]

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