Struct zookeeper::Acl [] [src]

pub struct Acl {
    pub perms: Permission,
    pub scheme: String,
    pub id: String,
}

An access control list.

In general, the ACL system is similar to UNIX file access permissions, where znodes act as files. Unlike UNIX, each znode can have any number of ACLs to correspond with the potentially limitless (and pluggable) authentication schemes. A more surprising difference is that ACLs are not recursive: If /path is only readable by a single user, but /path/sub is world-readable, then anyone will be able to read /path/sub.

See the ZooKeeper Programmer's Guide for more information.

Fields

The permissions associated with this ACL.

The authentication scheme this list is used for. The most common scheme is "auth", which allows any authenticated user to do anything (see creator_all).

The ID of the user under the scheme. For example, with the "ip" scheme, this is an IP address or CIDR netmask.

Methods

impl Acl
[src]

Create a new ACL with the given permissions, scheme, and id.

This ACL gives the creators authentication id's all permissions.

This is a completely open ACL.

This ACL gives the world the ability to read.

Trait Implementations

impl Clone for Acl
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Acl
[src]

Formats the value using the given formatter.

impl PartialEq for Acl
[src]

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

This method tests for !=.

impl Display for Acl
[src]

Formats the value using the given formatter. Read more