#[repr(C)]
pub struct fuse_bufvec { pub count: size_t, pub idx: size_t, pub off: size_t, pub buf: [fuse_buf; 1], }
Expand description

Data buffer vector

An array of data buffers, each containing a memory pointer or a file descriptor.

Allocate dynamically to add more than one buffer.

Fields

count: size_t

Number of buffers in the array

idx: size_t

Index of current buffer within the array

off: size_t

Current offset within the current buffer

buf: [fuse_buf; 1]

Array of buffers

Trait Implementations

Returns the “default value” for a type. Read more

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.