Function zvariant::to_writer_fds
source ยท pub fn to_writer_fds<B, W, T>(
writer: &mut W,
ctxt: EncodingContext<B>,
value: &T,
) -> Result<(usize, Vec<RawFd>)>
Expand description
Serialize T
that (potentially) contains FDs, to the given writer
.
This function returns the number of bytes written to the given writer
and the file descriptor
vector, which needs to be transferred via an out-of-band platform specific mechanism.
This function is not available on Windows.