Struct dbus::OwnedFd[][src]

pub struct OwnedFd { /* fields omitted */ }

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

Methods

impl OwnedFd
[src]

Create a new OwnedFd from a RawFd.

Convert an OwnedFD back into a RawFd.

Trait Implementations

impl Debug for OwnedFd
[src]

Formats the value using the given formatter. 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 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 Drop for OwnedFd
[src]

Executes the destructor for this type. 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 From<OwnedFd> for MessageItem
[src]

Performs the conversion.

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

Allows converting from a MessageItem into the type it contains.

impl Arg for OwnedFd
[src]

ARG_TYPE: ArgType = ArgType::UnixFd

The corresponding D-Bus argument type code.

The corresponding D-Bus type signature for this type.

Deprecated

: Use associated constant ARG_TYPE instead

The corresponding D-Bus argument type code; just returns ARG_TYPE. Read more

impl Append for OwnedFd
[src]

Performs the append operation.

impl DictKey for OwnedFd
[src]

impl<'a> Get<'a> for OwnedFd
[src]

Performs the get operation.

impl RefArg for OwnedFd
[src]

The corresponding D-Bus argument type code.

The corresponding D-Bus type signature for this type.

Performs the append operation.

Transforms this argument to Any (which can be downcasted to read the current value).

Transforms this argument to Any (which can be downcasted to read the current value). Read more

Try to read the argument as an i64. Read more

Try to read the argument as an u64. Read more

Try to read the argument as an f64. Read more

Try to read the argument as a str. Read more

Try to read the argument as an iterator. Read more

Auto Trait Implementations

impl Send for OwnedFd

impl Sync for OwnedFd