Enum fuse_backend_rs::api::filesystem::ListxattrReply[][src]

pub enum ListxattrReply {
    Names(Vec<u8>),
    Count(u32),
}
Expand description

A reply to a listxattr method call.

Variants

Names

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.

Tuple Fields of Names

0: Vec<u8>
Count

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.

Tuple Fields of Count

0: u32

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.