Trait gmime::StreamFsExt[][src]

pub trait StreamFsExt {
    fn get_owner(&self) -> bool;
fn set_owner(&self, owner: bool); }

Trait containing all StreamFs methods.

Implementors

StreamFs

Required Methods

Gets whether or not self owns the backend file descriptor.

Returns

true if self owns the backend file descriptor or false otherwise.

Sets whether or not self owns the backend file descriptor.

Note: owner should be true if the stream should close the backend file descriptor when destroyed or false otherwise.

owner

true if this stream should own the file descriptor or false otherwise

Implementors