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:
- You can call take_raw_fd(). At this point UnixFd releases ownership. You are now responsible of closing the FD.
- 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
- 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.
- 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]
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 Marshal for UnixFd
[src]
impl Marshal for UnixFd
[src]fn marshal(&self, ctx: &mut MarshalContext<'_, '_>) -> Result<(), Error>
[src]
fn marshal_as_variant(
&self,
ctx: &mut MarshalContext<'_, '_>
) -> Result<(), Error>
[src]
&self,
ctx: &mut MarshalContext<'_, '_>
) -> Result<(), Error>
impl PartialEq<UnixFd> 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<'buf, 'fds> Unmarshal<'buf, 'fds> for UnixFd
[src]
impl<'buf, 'fds> Unmarshal<'buf, 'fds> for UnixFd
[src]