Struct zookeeper_async::Acl [−][src]
pub struct Acl {
pub perms: Permission,
pub scheme: String,
pub id: String,
}
Expand description
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
perms: Permission
The permissions associated with this ACL.
scheme: String
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
).
id: String
The ID of the user under the scheme
. For example, with the "ip"
scheme
, this is an IP
address or CIDR netmask.
Implementations
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
Auto Trait Implementations
impl RefUnwindSafe for Acl
impl UnwindSafe for Acl
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more