Struct rustbus::wire::unixfd::UnixFd[][src]

pub struct UnixFd(_);

UnixFd is a wrapper around RawFd, to ensure that opened FDs are closed again, while still having the possibility of having multiple references to it.

“Ownership” as in responsibility of closing the FD works as follows:

  1. You can call take_raw_fd(). At this point UnixFd releases ownership. You are now responsible of closing the FD.
  2. You can call get_raw_fd(). This will not release ownership, UnixFd will still close it if no more references to it exist.

UnixFds and messages

  1. When a UnixFd is marshalled rustbus will dup() the FD so that the message and the original UnixFd do not depend on each others lifetime. You are free to use or close the original one.
  2. When a UnixFd is unmarshalled rustbus will NOT dup() the FD. This means if you call take_raw_fd(), it is gone from the message too! If you do not want this, you have to call dup() and then get_raw_fd() or take_raw_fd()

Implementations

impl UnixFd[src]

pub fn new(fd: RawFd) -> Self[src]

pub fn get_raw_fd(&self) -> Option<RawFd>[src]

Gets a non-owning RawFd. If None is returned. then this UnixFd has already been taken by somebody else and is no longer valid.

pub fn take_raw_fd(self) -> Option<RawFd>[src]

Gets a owning RawFd from the UnixFd. Subsequent attempt to get the RawFd from other UnixFd referencing the same file descriptor will fail.

pub fn dup(&self) -> Result<Self, DupError>[src]

Duplicate the underlying FD so you can use it as you will. This is different from just calling clone(). Clone only makes a new ref to the same underlying FD.

Trait Implementations

impl Clone for UnixFd[src]

impl Debug for UnixFd[src]

impl Hash for UnixFd[src]

impl Marshal for UnixFd[src]

impl PartialEq<UnixFd> for UnixFd[src]

Allow for the comparison of UnixFd even after the RawFd has been taken, to see if they originally referred to the same thing.

impl Signature for UnixFd[src]

impl<'buf, 'fds> Unmarshal<'buf, 'fds> for UnixFd[src]

impl Eq for UnixFd[src]

Auto Trait Implementations

impl RefUnwindSafe for UnixFd

impl Send for UnixFd

impl Sync for UnixFd

impl Unpin for UnixFd

impl UnwindSafe for UnixFd

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.