Struct dbus::OwnedFd [] [src]

pub struct OwnedFd {
    // some fields omitted
}

An RAII wrapper around Fd to ensure that file descriptor is closed when the scope ends.

Methods

impl OwnedFd
[src]

Trait Implementations

impl PartialOrd for OwnedFd
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialEq for OwnedFd
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for OwnedFd
[src]

Formats the value using the given formatter.

impl Drop for OwnedFd
[src]

A method called when the value goes out of scope. Read more

impl Clone for OwnedFd
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl AsRawFd for OwnedFd
[src]

Extracts the raw file descriptor. Read more

impl<'a> FromMessageItem<'a> for &'a OwnedFd
[src]