#[repr(C)]
pub struct fuse_chan_ops { pub receive: Option<unsafe extern "C" fn(chp: *mut *mut fuse_chan, buf: *mut c_char, size: size_t) -> c_int>, pub send: Option<unsafe extern "C" fn(ch: *mut fuse_chan, iov: *const iovec, count: size_t) -> c_int>, pub destroy: Option<unsafe extern "C" fn(ch: *mut fuse_chan)>, }
Expand description

Channel operations

This is used in channel creation

Fields

receive: Option<unsafe extern "C" fn(chp: *mut *mut fuse_chan, buf: *mut c_char, size: size_t) -> c_int>

Hook for receiving a raw request

@param ch pointer to the channel @param buf the buffer to store the request in @param size the size of the buffer @return the actual size of the raw request, or -1 on error

send: Option<unsafe extern "C" fn(ch: *mut fuse_chan, iov: *const iovec, count: size_t) -> c_int>

Hook for sending a raw reply

A return value of -ENOENT means, that the request was interrupted, and the reply was discarded

@param ch the channel @param iov vector of blocks @param count the number of blocks in vector @return zero on success, -errno on failure

destroy: Option<unsafe extern "C" fn(ch: *mut fuse_chan)>

Destroy the channel

@param ch the channel

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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 resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

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.