Enum fuse_backend_rs::api::filesystem::ListxattrReply
source · Expand description
A reply to a listxattr
method call.
Variants§
Names(Vec<u8>)
A buffer containing a nul-separated list of the names of all the extended attributes
associated with this Inode
. This list of names may be unordered and includes a namespace
prefix. There may be several disjoint namespaces associated with a single Inode
.
Count(u32)
This size of the buffer needed to hold the full list of extended attribute names associated
with this Inode
. Should be returned when the size
parameter is 0. Callers should note
that it is still possible for the set of extended attributes to change between listxattr
calls and so should not assume that a subsequent call to listxattr
with the returned count
will always succeed.