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]

fn new(fd: RawFd) -> OwnedFd

fn into_fd(self) -> RawFd

Trait Implementations

impl PartialOrd for OwnedFd
[src]

fn partial_cmp(&self, __arg_0: &OwnedFd) -> Option<Ordering>

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

fn lt(&self, __arg_0: &OwnedFd) -> bool

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

fn le(&self, __arg_0: &OwnedFd) -> bool

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

fn gt(&self, __arg_0: &OwnedFd) -> bool

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

fn ge(&self, __arg_0: &OwnedFd) -> bool

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]

fn eq(&self, __arg_0: &OwnedFd) -> bool

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

fn ne(&self, __arg_0: &OwnedFd) -> bool

This method tests for !=.

impl Debug for OwnedFd
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Drop for OwnedFd
[src]

fn drop(&mut self)

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

impl Clone for OwnedFd
[src]

fn clone(&self) -> OwnedFd

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl AsRawFd for OwnedFd
[src]

fn as_raw_fd(&self) -> RawFd

Extracts the raw file descriptor. Read more