Enum shadow_rs::host::descriptor::socket::SocketRefMut
source · pub enum SocketRefMut<'a> {
Unix(AtomicRefMut<'a, UnixSocket>),
Inet(InetSocketRefMut<'a>),
Netlink(AtomicRefMut<'a, NetlinkSocket>),
}
Variants§
Unix(AtomicRefMut<'a, UnixSocket>)
Inet(InetSocketRefMut<'a>)
Netlink(AtomicRefMut<'a, NetlinkSocket>)
Implementations§
source§impl SocketRefMut<'_>
impl SocketRefMut<'_>
pub fn state(&self) -> FileState
pub fn mode(&self) -> FileMode
pub fn status(&self) -> FileStatus
pub fn stat(&self) -> Result<stat, SyscallError>
pub fn has_open_file(&self) -> bool
pub fn set_has_open_file(&mut self, val: bool)
pub fn supports_sa_restart(&self) -> bool
pub fn close( &mut self, cb_queue: &mut CallbackQueue, ) -> Result<(), SyscallError>
pub fn set_status(&mut self, status: FileStatus)
pub fn ioctl( &mut self, request: IoctlRequest, arg_ptr: ForeignPtr<()>, memory_manager: &mut MemoryManager, ) -> SyscallResult
pub fn add_listener( &mut self, monitoring_state: FileState, monitoring_signals: FileSignals, filter: StateListenerFilter, notify_fn: impl Fn(FileState, FileState, FileSignals, &mut CallbackQueue) + Send + Sync + 'static, ) -> StateListenHandle
pub fn add_legacy_listener(&mut self, ptr: HostTreePointer<StatusListener>)
pub fn remove_legacy_listener(&mut self, ptr: *mut StatusListener)
pub fn readv( &mut self, iovs: &[IoVec], offset: Option<off_t>, flags: c_int, mem: &mut MemoryManager, cb_queue: &mut CallbackQueue, ) -> Result<ssize_t, SyscallError>
pub fn writev( &mut self, iovs: &[IoVec], offset: Option<off_t>, flags: c_int, mem: &mut MemoryManager, cb_queue: &mut CallbackQueue, ) -> Result<ssize_t, SyscallError>
source§impl SocketRefMut<'_>
impl SocketRefMut<'_>
pub fn getpeername(&self) -> Result<Option<SockaddrStorage>, Errno>
pub fn getsockname(&self) -> Result<Option<SockaddrStorage>, Errno>
pub fn address_family(&self) -> AddressFamily
pub fn getsockopt( &mut self, level: c_int, optname: c_int, optval_ptr: ForeignPtr<()>, optlen: socklen_t, memory_manager: &mut MemoryManager, cb_queue: &mut CallbackQueue, ) -> Result<socklen_t, SyscallError>
pub fn setsockopt( &mut self, level: c_int, optname: c_int, optval_ptr: ForeignPtr<()>, optlen: socklen_t, memory_manager: &MemoryManager, ) -> Result<(), SyscallError>
pub fn accept( &mut self, net_ns: &NetworkNamespace, rng: impl Rng, cb_queue: &mut CallbackQueue, ) -> Result<OpenFile, SyscallError>
pub fn shutdown( &mut self, how: Shutdown, cb_queue: &mut CallbackQueue, ) -> Result<(), SyscallError>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for SocketRefMut<'a>
impl<'a> !RefUnwindSafe for SocketRefMut<'a>
impl<'a> Send for SocketRefMut<'a>
impl<'a> Sync for SocketRefMut<'a>
impl<'a> Unpin for SocketRefMut<'a>
impl<'a> !UnwindSafe for SocketRefMut<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more