Skip to main content

WasiCtxNamedView

Struct WasiCtxNamedView 

Source
pub struct WasiCtxNamedView<'a, T>(pub &'a mut T);
Expand description

A helper structure by which to implement generated-Host traits for bindings corresponding to named imports.

This is an implementation detail of how named imports are organized. Embedders invoking generated add_to_linker functions directly will be required to create this structure directly. Otherwise you probably won’t need to interact with this.

Tuple Fields§

§0: &'a mut T

Trait Implementations§

Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn now(&mut self, id: NamedId) -> Result<Datetime>

Read the current value of the clock. Read more
Source§

fn resolution(&mut self, id: NamedId) -> Result<Datetime>

Query the resolution of the clock. Read more
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn now(&mut self, id: NamedId) -> Result<Instant>

Read the current value of the clock. Read more
Source§

fn resolution(&mut self, id: NamedId) -> Result<Instant>

Query the resolution of the clock. Returns the duration of time corresponding to a clock tick.
Source§

fn subscribe_instant( &mut self, id: NamedId, when: Instant, ) -> Result<Resource<DynPollable>>

Create a pollable which will resolve once the specified instant has occurred.
Source§

fn subscribe_duration( &mut self, id: NamedId, duration: WasiDuration, ) -> Result<Resource<DynPollable>>

Create a pollable that will resolve after the specified duration has elapsed from the time this function is invoked.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn get_environment(&mut self, id: NamedId) -> Result<Vec<(String, String)>>

Get the POSIX-style environment variables. Read more
Source§

fn get_arguments(&mut self, id: NamedId) -> Result<Vec<String>>

Get the POSIX-style arguments to the program.
Source§

fn initial_cwd(&mut self, id: NamedId) -> Result<Option<String>>

Return a path that programs should use as their initial current working directory, interpreting . as shorthand for this.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn exit(&mut self, id: NamedId, status: Result<(), ()>) -> Result<()>

Exit the current instance and any linked instances.
Source§

fn exit_with_code(&mut self, id: NamedId, status_code: u8) -> Result<()>

Exit the current instance and any linked instances, reporting the specified status code to the host. Read more
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn get_directories( &mut self, id: NamedId, ) -> Result<Vec<(Resource<Descriptor>, String)>>

Return the set of preopened directories, and their paths.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn convert_error_code(&mut self, err: FsError) -> Result<ErrorCode>

Source§

fn filesystem_error_code( &mut self, id: NamedId, err: Resource<Error>, ) -> Result<Option<ErrorCode>>

Attempts to extract a filesystem-related error-code from the stream error provided. Read more
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn instance_network(&mut self, id: NamedId) -> Result<Resource<Network>, Error>

Get a handle to the default network.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn convert_error_code(&mut self, error: SocketError) -> Result<ErrorCode>

Source§

fn network_error_code( &mut self, id: NamedId, err: Resource<Error>, ) -> Result<Option<ErrorCode>>

Attempts to extract a network-related error-code from the stream error provided. Read more
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn get_random_bytes(&mut self, id: NamedId, len: u64) -> Result<Vec<u8>>

Return len cryptographically-secure random or pseudo-random bytes. Read more
Source§

fn get_random_u64(&mut self, id: NamedId) -> Result<u64>

Return a cryptographically-secure random or pseudo-random u64 value. Read more
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn get_insecure_random_bytes( &mut self, id: NamedId, len: u64, ) -> Result<Vec<u8>>

Return len insecure pseudo-random bytes. Read more
Source§

fn get_insecure_random_u64(&mut self, id: NamedId) -> Result<u64>

Return an insecure pseudo-random u64 value. Read more
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn insecure_seed(&mut self, id: NamedId) -> Result<(u64, u64)>

Return a 128-bit value that may contain a pseudo-random value. Read more
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn convert_error_code(&mut self, err: SocketError) -> Result<ErrorCode>

Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn convert_error_code(&mut self, err: SocketError) -> Result<ErrorCode>

Source§

fn create_tcp_socket( &mut self, id: NamedId, address_family: IpAddressFamily, ) -> SocketResult<Resource<TcpSocket>>

Create a new TCP socket. Read more
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn convert_error_code(&mut self, err: SocketError) -> Result<ErrorCode>

Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn convert_error_code(&mut self, err: SocketError) -> Result<ErrorCode>

Source§

async fn create_udp_socket( &mut self, id: NamedId, address_family: IpAddressFamily, ) -> SocketResult<Resource<UdpSocket>>

Create a new UDP socket. Read more
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn convert_error_code(&mut self, err: SocketError) -> Result<ErrorCode>

Source§

fn resolve_addresses( &mut self, id: NamedId, network: Resource<Network>, name: String, ) -> Result<Resource<ResolveAddressStream>, SocketError>

Resolve an internet host name to a list of IP addresses. Read more
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn get_stdin(&mut self, id: NamedId) -> Result<Resource<DynInputStream>, Error>

Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn get_stdout( &mut self, id: NamedId, ) -> Result<Resource<DynOutputStream>, Error>

Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn get_stderr( &mut self, id: NamedId, ) -> Result<Resource<DynOutputStream>, Error>

Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn get_terminal_stdin( &mut self, id: NamedId, ) -> Result<Option<Resource<TerminalInput>>>

If stdin is connected to a terminal, return a terminal-input handle allowing further interaction with it.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn get_terminal_stdout( &mut self, id: NamedId, ) -> Result<Option<Resource<TerminalOutput>>>

If stdout is connected to a terminal, return a terminal-output handle allowing further interaction with it.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Source§

fn get_terminal_stderr( &mut self, id: NamedId, ) -> Result<Option<Resource<TerminalOutput>>>

If stderr is connected to a terminal, return a terminal-output handle allowing further interaction with it.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

fn exit(&mut self, id: NamedId, status: Result<(), ()>) -> Result<()>

Exit the current instance and any linked instances.
Source§

fn exit_with_code(&mut self, id: NamedId, status_code: u8) -> Result<()>

Exit the current instance and any linked instances, reporting the specified status code to the host. Read more
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

fn get_terminal_stdin( &mut self, id: NamedId, ) -> Result<Option<Resource<TerminalInput>>>

If stdin is connected to a terminal, return a terminal-input handle allowing further interaction with it.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

fn get_terminal_stdout( &mut self, id: NamedId, ) -> Result<Option<Resource<TerminalOutput>>>

If stdout is connected to a terminal, return a terminal-output handle allowing further interaction with it.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

fn get_terminal_stderr( &mut self, id: NamedId, ) -> Result<Option<Resource<TerminalOutput>>>

If stderr is connected to a terminal, return a terminal-output handle allowing further interaction with it.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

fn get_environment(&mut self, id: NamedId) -> Result<Vec<(String, String)>>

Get the POSIX-style environment variables. Read more
Source§

fn get_arguments(&mut self, id: NamedId) -> Result<Vec<String>>

Get the POSIX-style arguments to the program.
Source§

fn get_initial_cwd(&mut self, id: NamedId) -> Result<Option<String>>

Return a path that programs should use as their initial current working directory, interpreting . as shorthand for this.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

fn now(&mut self, id: NamedId) -> Result<Instant>

Read the current value of the clock. Read more
Source§

fn get_resolution(&mut self, id: NamedId) -> Result<Duration>

Query the resolution of the clock. Returns the smallest duration of time that the implementation permits distinguishing.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

fn now(&mut self, id: NamedId) -> Result<Mark>

Read the current value of the clock. Read more
Source§

fn get_resolution(&mut self, id: NamedId) -> Result<Duration>

Query the resolution of the clock. Returns the duration of time corresponding to a clock tick.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

fn convert_error_code(&mut self, error: FilesystemError) -> Result<ErrorCode>

Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

fn get_directories( &mut self, id: NamedId, ) -> Result<Vec<(Resource<Descriptor>, String)>>

Return the set of preopened directories, and their paths.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

fn get_random_bytes(&mut self, id: NamedId, len: u64) -> Result<Vec<u8>>

Return up to max-len cryptographically-secure random or pseudo-random bytes. Read more
Source§

fn get_random_u64(&mut self, id: NamedId) -> Result<u64>

Return a cryptographically-secure random or pseudo-random u64 value. Read more
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

fn get_insecure_random_bytes( &mut self, id: NamedId, len: u64, ) -> Result<Vec<u8>>

Return up to max-len insecure pseudo-random bytes. Read more
Source§

fn get_insecure_random_u64(&mut self, id: NamedId) -> Result<u64>

Return an insecure pseudo-random u64 value. Read more
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

fn get_insecure_seed(&mut self, id: NamedId) -> Result<(u64, u64)>

Return a 128-bit value that may contain a pseudo-random value. Read more
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

impl<T> Host for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

fn convert_error_code(&mut self, error: SocketError) -> Result<ErrorCode>

Source§

impl<T> HostDescriptor for WasiCtxNamedView<'_, T>

Source§

async fn advise( &mut self, id: NamedId, fd: Resource<Descriptor>, offset: Filesize, len: Filesize, advice: Advice, ) -> FsResult<()>

Provide file advisory information on a descriptor. Read more
Source§

async fn sync_data( &mut self, id: NamedId, fd: Resource<Descriptor>, ) -> FsResult<()>

Synchronize the data of a file to disk. Read more
Source§

async fn get_flags( &mut self, id: NamedId, fd: Resource<Descriptor>, ) -> FsResult<DescriptorFlags>

Get flags associated with a descriptor. Read more
Source§

async fn get_type( &mut self, id: NamedId, fd: Resource<Descriptor>, ) -> FsResult<DescriptorType>

Get the dynamic type of a descriptor. Read more
Source§

async fn set_size( &mut self, id: NamedId, fd: Resource<Descriptor>, size: Filesize, ) -> FsResult<()>

Adjust the size of an open file. If this increases the file’s size, the extra bytes are filled with zeros. Read more
Source§

async fn set_times( &mut self, id: NamedId, fd: Resource<Descriptor>, atim: NewTimestamp, mtim: NewTimestamp, ) -> FsResult<()>

Adjust the timestamps of an open file or directory. Read more
Source§

async fn read( &mut self, id: NamedId, fd: Resource<Descriptor>, len: Filesize, offset: Filesize, ) -> FsResult<(Vec<u8>, bool)>

Read from a descriptor, without using and updating the descriptor’s offset. Read more
Source§

async fn write( &mut self, id: NamedId, fd: Resource<Descriptor>, buf: Vec<u8>, offset: Filesize, ) -> FsResult<Filesize>

Write to a descriptor, without using and updating the descriptor’s offset. Read more
Source§

async fn read_directory( &mut self, id: NamedId, fd: Resource<Descriptor>, ) -> FsResult<Resource<DirectoryEntryStream>>

Read directory entries from a directory. Read more
Source§

async fn sync(&mut self, id: NamedId, fd: Resource<Descriptor>) -> FsResult<()>

Synchronize the data and metadata of a file to disk. Read more
Source§

async fn create_directory_at( &mut self, id: NamedId, fd: Resource<Descriptor>, path: String, ) -> FsResult<()>

Create a directory. Read more
Source§

async fn stat( &mut self, id: NamedId, fd: Resource<Descriptor>, ) -> FsResult<DescriptorStat>

Return the attributes of an open file or directory. Read more
Source§

async fn stat_at( &mut self, id: NamedId, fd: Resource<Descriptor>, path_flags: PathFlags, path: String, ) -> FsResult<DescriptorStat>

Return the attributes of a file or directory. Read more
Source§

async fn set_times_at( &mut self, id: NamedId, fd: Resource<Descriptor>, path_flags: PathFlags, path: String, atim: NewTimestamp, mtim: NewTimestamp, ) -> FsResult<()>

Adjust the timestamps of a file or directory. Read more
Create a hard link. Read more
Source§

async fn open_at( &mut self, id: NamedId, fd: Resource<Descriptor>, path_flags: PathFlags, path: String, oflags: OpenFlags, flags: DescriptorFlags, ) -> FsResult<Resource<Descriptor>>

Open a file or directory. Read more
Source§

fn drop(&mut self, id: NamedId, fd: Resource<Descriptor>) -> Result<()>

Read the contents of a symbolic link. Read more
Source§

async fn remove_directory_at( &mut self, id: NamedId, fd: Resource<Descriptor>, path: String, ) -> FsResult<()>

Remove a directory. Read more
Source§

async fn rename_at( &mut self, id: NamedId, fd: Resource<Descriptor>, old_path: String, new_fd: Resource<Descriptor>, new_path: String, ) -> FsResult<()>

Rename a filesystem object. Read more
Create a symbolic link (also known as a “symlink”). Read more
Unlink a filesystem object that is not a directory. Read more
Source§

fn read_via_stream( &mut self, id: NamedId, fd: Resource<Descriptor>, offset: Filesize, ) -> FsResult<Resource<DynInputStream>>

Return a stream for reading from a file, if available. Read more
Source§

fn write_via_stream( &mut self, id: NamedId, fd: Resource<Descriptor>, offset: Filesize, ) -> FsResult<Resource<DynOutputStream>>

Return a stream for writing to a file, if available. Read more
Source§

fn append_via_stream( &mut self, id: NamedId, fd: Resource<Descriptor>, ) -> FsResult<Resource<DynOutputStream>>

Return a stream for appending to a file, if available. Read more
Source§

async fn is_same_object( &mut self, id: NamedId, a: Resource<Descriptor>, b: Resource<Descriptor>, ) -> Result<bool>

Test whether two descriptors refer to the same filesystem object. Read more
Source§

async fn metadata_hash( &mut self, id: NamedId, fd: Resource<Descriptor>, ) -> FsResult<MetadataHashValue>

Return a hash of the metadata associated with a filesystem object referred to by a descriptor. Read more
Source§

async fn metadata_hash_at( &mut self, id: NamedId, fd: Resource<Descriptor>, path_flags: PathFlags, path: String, ) -> FsResult<MetadataHashValue>

Return a hash of the metadata associated with a filesystem object referred to by a directory descriptor and a relative path. Read more
Source§

impl<T> HostDescriptor for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

fn drop(&mut self, id: NamedId, fd: Resource<Descriptor>) -> Result<()>

Source§

impl<T> HostDirectoryEntryStream for WasiCtxNamedView<'_, T>

Source§

async fn read_directory_entry( &mut self, id: NamedId, stream: Resource<DirectoryEntryStream>, ) -> FsResult<Option<DirectoryEntry>>

Read a single directory entry from a directory-entry-stream.
Source§

fn drop( &mut self, id: NamedId, stream: Resource<DirectoryEntryStream>, ) -> Result<()>

Source§

impl<T> HostIncomingDatagramStream for WasiCtxNamedView<'_, T>

Source§

fn receive( &mut self, id: NamedId, this: Resource<IncomingDatagramStream>, max_results: u64, ) -> SocketResult<Vec<IncomingDatagram>>

Receive messages on the socket. Read more
Source§

fn subscribe( &mut self, id: NamedId, this: Resource<IncomingDatagramStream>, ) -> Result<Resource<DynPollable>>

Create a pollable which will resolve once the stream is ready to receive again. Read more
Source§

async fn drop( &mut self, id: NamedId, this: Resource<IncomingDatagramStream>, ) -> Result<(), Error>

Source§

impl<T> HostNetwork for WasiCtxNamedView<'_, T>

Source§

fn drop(&mut self, id: NamedId, this: Resource<Network>) -> Result<(), Error>

Source§

impl<T> HostOutgoingDatagramStream for WasiCtxNamedView<'_, T>

Source§

fn check_send( &mut self, id: NamedId, this: Resource<OutgoingDatagramStream>, ) -> SocketResult<u64>

Check readiness for sending. This function never blocks. Read more
Source§

fn send( &mut self, id: NamedId, this: Resource<OutgoingDatagramStream>, datagrams: Vec<OutgoingDatagram>, ) -> SocketResult<u64>

Send messages on the socket. Read more
Source§

fn subscribe( &mut self, id: NamedId, this: Resource<OutgoingDatagramStream>, ) -> Result<Resource<DynPollable>>

Create a pollable which will resolve once the stream is ready to send again. Read more
Source§

async fn drop( &mut self, id: NamedId, this: Resource<OutgoingDatagramStream>, ) -> Result<(), Error>

Source§

impl<T> HostResolveAddressStream for WasiCtxNamedView<'_, T>

Source§

fn resolve_next_address( &mut self, id: NamedId, resource: Resource<ResolveAddressStream>, ) -> Result<Option<IpAddress>, SocketError>

Returns the next address from the resolver. Read more
Source§

fn subscribe( &mut self, id: NamedId, resource: Resource<ResolveAddressStream>, ) -> Result<Resource<DynPollable>>

Create a pollable which will resolve once the stream is ready for I/O. Read more
Source§

async fn drop( &mut self, id: NamedId, resource: Resource<ResolveAddressStream>, ) -> Result<()>

Source§

impl<T> HostTcpSocket for WasiCtxNamedView<'_, T>

Source§

async fn start_bind( &mut self, id: NamedId, this: Resource<TcpSocket>, network: Resource<Network>, local_address: IpSocketAddress, ) -> SocketResult<()>

Bind the socket to a specific network on the provided IP address and port. Read more
Source§

fn finish_bind( &mut self, id: NamedId, this: Resource<TcpSocket>, ) -> SocketResult<()>

Source§

fn start_connect( &mut self, id: NamedId, this: Resource<TcpSocket>, network: Resource<Network>, remote_address: IpSocketAddress, ) -> SocketResult<()>

Connect to a remote endpoint. Read more
Source§

fn finish_connect( &mut self, id: NamedId, this: Resource<TcpSocket>, ) -> SocketResult<(Resource<DynInputStream>, Resource<DynOutputStream>)>

Source§

async fn start_listen( &mut self, id: NamedId, this: Resource<TcpSocket>, ) -> SocketResult<()>

Start listening for new connections. Read more
Source§

fn finish_listen( &mut self, id: NamedId, this: Resource<TcpSocket>, ) -> SocketResult<()>

Source§

fn accept( &mut self, id: NamedId, this: Resource<TcpSocket>, ) -> SocketResult<(Resource<TcpSocket>, Resource<DynInputStream>, Resource<DynOutputStream>)>

Accept a new client socket. Read more
Source§

fn local_address( &mut self, id: NamedId, this: Resource<TcpSocket>, ) -> SocketResult<IpSocketAddress>

Get the bound local address. Read more
Source§

fn remote_address( &mut self, id: NamedId, this: Resource<TcpSocket>, ) -> SocketResult<IpSocketAddress>

Get the remote address. Read more
Source§

fn is_listening( &mut self, id: NamedId, this: Resource<TcpSocket>, ) -> Result<bool, Error>

Whether the socket is in the listening state. Read more
Source§

fn address_family( &mut self, id: NamedId, this: Resource<TcpSocket>, ) -> Result<IpAddressFamily, Error>

Whether this is a IPv4 or IPv6 socket. Read more
Source§

fn set_listen_backlog_size( &mut self, id: NamedId, this: Resource<TcpSocket>, value: u64, ) -> SocketResult<()>

Hints the desired listen queue size. Implementations are free to ignore this. Read more
Source§

fn keep_alive_enabled( &mut self, id: NamedId, this: Resource<TcpSocket>, ) -> SocketResult<bool>

Enables or disables keepalive. Read more
Source§

fn set_keep_alive_enabled( &mut self, id: NamedId, this: Resource<TcpSocket>, value: bool, ) -> SocketResult<()>

Source§

fn keep_alive_idle_time( &mut self, id: NamedId, this: Resource<TcpSocket>, ) -> SocketResult<u64>

Amount of time the connection has to be idle before TCP starts sending keepalive packets. Read more
Source§

fn set_keep_alive_idle_time( &mut self, id: NamedId, this: Resource<TcpSocket>, value: u64, ) -> SocketResult<()>

Source§

fn keep_alive_interval( &mut self, id: NamedId, this: Resource<TcpSocket>, ) -> SocketResult<u64>

The time between keepalive packets. Read more
Source§

fn set_keep_alive_interval( &mut self, id: NamedId, this: Resource<TcpSocket>, value: u64, ) -> SocketResult<()>

Source§

fn keep_alive_count( &mut self, id: NamedId, this: Resource<TcpSocket>, ) -> SocketResult<u32>

The maximum amount of keepalive packets TCP should send before aborting the connection. Read more
Source§

fn set_keep_alive_count( &mut self, id: NamedId, this: Resource<TcpSocket>, value: u32, ) -> SocketResult<()>

Source§

fn hop_limit( &mut self, id: NamedId, this: Resource<TcpSocket>, ) -> SocketResult<u8>

Equivalent to the IP_TTL & IPV6_UNICAST_HOPS socket options. Read more
Source§

fn set_hop_limit( &mut self, id: NamedId, this: Resource<TcpSocket>, value: u8, ) -> SocketResult<()>

Source§

fn receive_buffer_size( &mut self, id: NamedId, this: Resource<TcpSocket>, ) -> SocketResult<u64>

The kernel buffer space reserved for sends/receives on this socket. Read more
Source§

fn set_receive_buffer_size( &mut self, id: NamedId, this: Resource<TcpSocket>, value: u64, ) -> SocketResult<()>

Source§

fn send_buffer_size( &mut self, id: NamedId, this: Resource<TcpSocket>, ) -> SocketResult<u64>

Source§

fn set_send_buffer_size( &mut self, id: NamedId, this: Resource<TcpSocket>, value: u64, ) -> SocketResult<()>

Source§

fn subscribe( &mut self, id: NamedId, this: Resource<TcpSocket>, ) -> Result<Resource<DynPollable>>

Create a pollable which can be used to poll for, or block on, completion of any of the asynchronous operations of this socket. Read more
Source§

fn shutdown( &mut self, id: NamedId, this: Resource<TcpSocket>, shutdown_type: ShutdownType, ) -> SocketResult<()>

Initiate a graceful shutdown. Read more
Source§

fn drop(&mut self, id: NamedId, this: Resource<TcpSocket>) -> Result<(), Error>

Source§

impl<T> HostTcpSocket for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

async fn bind( &mut self, id: NamedId, socket: Resource<TcpSocket>, local_address: IpSocketAddress, ) -> SocketResult<()>

Bind the socket to the provided IP address and port. Read more
Source§

fn create( &mut self, id: NamedId, address_family: IpAddressFamily, ) -> SocketResult<Resource<TcpSocket>>

Create a new TCP socket. Read more
Source§

fn get_local_address( &mut self, id: NamedId, socket: Resource<TcpSocket>, ) -> SocketResult<IpSocketAddress>

Get the bound local address. Read more
Source§

fn get_remote_address( &mut self, id: NamedId, socket: Resource<TcpSocket>, ) -> SocketResult<IpSocketAddress>

Get the remote address. Read more
Source§

fn get_is_listening( &mut self, id: NamedId, socket: Resource<TcpSocket>, ) -> Result<bool>

Whether the socket is in the listening state. Read more
Source§

fn get_address_family( &mut self, id: NamedId, socket: Resource<TcpSocket>, ) -> Result<IpAddressFamily>

Whether this is a IPv4 or IPv6 socket. Read more
Source§

fn set_listen_backlog_size( &mut self, id: NamedId, socket: Resource<TcpSocket>, value: u64, ) -> SocketResult<()>

Hints the desired listen queue size. Implementations are free to ignore this. Read more
Source§

fn get_keep_alive_enabled( &mut self, id: NamedId, socket: Resource<TcpSocket>, ) -> SocketResult<bool>

Enables or disables keepalive. Read more
Source§

fn set_keep_alive_enabled( &mut self, id: NamedId, socket: Resource<TcpSocket>, value: bool, ) -> SocketResult<()>

Source§

fn get_keep_alive_idle_time( &mut self, id: NamedId, socket: Resource<TcpSocket>, ) -> SocketResult<Duration>

Amount of time the connection has to be idle before TCP starts sending keepalive packets. Read more
Source§

fn set_keep_alive_idle_time( &mut self, id: NamedId, socket: Resource<TcpSocket>, value: Duration, ) -> SocketResult<()>

Source§

fn get_keep_alive_interval( &mut self, id: NamedId, socket: Resource<TcpSocket>, ) -> SocketResult<Duration>

The time between keepalive packets. Read more
Source§

fn set_keep_alive_interval( &mut self, id: NamedId, socket: Resource<TcpSocket>, value: Duration, ) -> SocketResult<()>

Source§

fn get_keep_alive_count( &mut self, id: NamedId, socket: Resource<TcpSocket>, ) -> SocketResult<u32>

The maximum amount of keepalive packets TCP should send before aborting the connection. Read more
Source§

fn set_keep_alive_count( &mut self, id: NamedId, socket: Resource<TcpSocket>, value: u32, ) -> SocketResult<()>

Source§

fn get_hop_limit( &mut self, id: NamedId, socket: Resource<TcpSocket>, ) -> SocketResult<u8>

Equivalent to the IP_TTL & IPV6_UNICAST_HOPS socket options. Read more
Source§

fn set_hop_limit( &mut self, id: NamedId, socket: Resource<TcpSocket>, value: u8, ) -> SocketResult<()>

Source§

fn get_receive_buffer_size( &mut self, id: NamedId, socket: Resource<TcpSocket>, ) -> SocketResult<u64>

Kernel buffer space reserved for sending/receiving on this socket. Implementations usually treat this as a cap the buffer can grow to, rather than allocating the full amount immediately. Read more
Source§

fn set_receive_buffer_size( &mut self, id: NamedId, socket: Resource<TcpSocket>, value: u64, ) -> SocketResult<()>

Source§

fn get_send_buffer_size( &mut self, id: NamedId, socket: Resource<TcpSocket>, ) -> SocketResult<u64>

Source§

fn set_send_buffer_size( &mut self, id: NamedId, socket: Resource<TcpSocket>, value: u64, ) -> SocketResult<()>

Source§

fn drop(&mut self, id: NamedId, sock: Resource<TcpSocket>) -> Result<()>

Source§

impl<T> HostTerminalInput for WasiCtxNamedView<'_, T>

Source§

fn drop(&mut self, id: NamedId, r: Resource<TerminalInput>) -> Result<()>

Source§

impl<T> HostTerminalInput for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

fn drop(&mut self, id: NamedId, rep: Resource<TerminalInput>) -> Result<()>

Source§

impl<T> HostTerminalOutput for WasiCtxNamedView<'_, T>

Source§

fn drop(&mut self, id: NamedId, r: Resource<TerminalOutput>) -> Result<()>

Source§

impl<T> HostTerminalOutput for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

fn drop(&mut self, id: NamedId, rep: Resource<TerminalOutput>) -> Result<()>

Source§

impl<T> HostUdpSocket for WasiCtxNamedView<'_, T>

Source§

async fn start_bind( &mut self, id: NamedId, this: Resource<UdpSocket>, network: Resource<Network>, local_address: IpSocketAddress, ) -> SocketResult<()>

Bind the socket to a specific network on the provided IP address and port. Read more
Source§

fn finish_bind( &mut self, id: NamedId, this: Resource<UdpSocket>, ) -> SocketResult<()>

Source§

async fn stream( &mut self, id: NamedId, this: Resource<UdpSocket>, remote_address: Option<IpSocketAddress>, ) -> SocketResult<(Resource<IncomingDatagramStream>, Resource<OutgoingDatagramStream>)>

Set up inbound & outbound communication channels, optionally to a specific peer. Read more
Source§

fn local_address( &mut self, id: NamedId, this: Resource<UdpSocket>, ) -> SocketResult<IpSocketAddress>

Get the current bound address. Read more
Source§

fn remote_address( &mut self, id: NamedId, this: Resource<UdpSocket>, ) -> SocketResult<IpSocketAddress>

Get the address the socket is currently streaming to. Read more
Source§

fn address_family( &mut self, id: NamedId, this: Resource<UdpSocket>, ) -> Result<IpAddressFamily, Error>

Whether this is a IPv4 or IPv6 socket. Read more
Source§

fn unicast_hop_limit( &mut self, id: NamedId, this: Resource<UdpSocket>, ) -> SocketResult<u8>

Equivalent to the IP_TTL & IPV6_UNICAST_HOPS socket options. Read more
Source§

fn set_unicast_hop_limit( &mut self, id: NamedId, this: Resource<UdpSocket>, value: u8, ) -> SocketResult<()>

Source§

fn receive_buffer_size( &mut self, id: NamedId, this: Resource<UdpSocket>, ) -> SocketResult<u64>

The kernel buffer space reserved for sends/receives on this socket. Read more
Source§

fn set_receive_buffer_size( &mut self, id: NamedId, this: Resource<UdpSocket>, value: u64, ) -> SocketResult<()>

Source§

fn send_buffer_size( &mut self, id: NamedId, this: Resource<UdpSocket>, ) -> SocketResult<u64>

Source§

fn set_send_buffer_size( &mut self, id: NamedId, this: Resource<UdpSocket>, value: u64, ) -> SocketResult<()>

Source§

fn subscribe( &mut self, id: NamedId, this: Resource<UdpSocket>, ) -> Result<Resource<DynPollable>>

Create a pollable which will resolve once the socket is ready for I/O. Read more
Source§

fn drop(&mut self, id: NamedId, this: Resource<UdpSocket>) -> Result<(), Error>

Source§

impl<T> HostUdpSocket for WasiCtxNamedView<'_, T>

Available on crate feature p3 only.
Source§

async fn bind( &mut self, id: NamedId, socket: Resource<UdpSocket>, local_address: IpSocketAddress, ) -> SocketResult<()>

Bind the socket to the provided IP address and port. Read more
Source§

async fn connect( &mut self, id: NamedId, socket: Resource<UdpSocket>, remote_address: IpSocketAddress, ) -> SocketResult<()>

Associate this socket with a specific peer address. Read more
Source§

async fn create( &mut self, id: NamedId, address_family: IpAddressFamily, ) -> SocketResult<Resource<UdpSocket>>

Create a new UDP socket. Read more
Source§

fn disconnect( &mut self, id: NamedId, socket: Resource<UdpSocket>, ) -> SocketResult<()>

Dissociate this socket from its peer address. Read more
Source§

fn get_local_address( &mut self, id: NamedId, socket: Resource<UdpSocket>, ) -> SocketResult<IpSocketAddress>

Get the current bound address. Read more
Source§

fn get_remote_address( &mut self, id: NamedId, socket: Resource<UdpSocket>, ) -> SocketResult<IpSocketAddress>

Get the address the socket is currently “connected” to. Read more
Source§

fn get_address_family( &mut self, id: NamedId, socket: Resource<UdpSocket>, ) -> Result<IpAddressFamily>

Whether this is a IPv4 or IPv6 socket. Read more
Source§

fn get_unicast_hop_limit( &mut self, id: NamedId, socket: Resource<UdpSocket>, ) -> SocketResult<u8>

Equivalent to the IP_TTL & IPV6_UNICAST_HOPS socket options. Read more
Source§

fn set_unicast_hop_limit( &mut self, id: NamedId, socket: Resource<UdpSocket>, value: u8, ) -> SocketResult<()>

Source§

fn get_receive_buffer_size( &mut self, id: NamedId, socket: Resource<UdpSocket>, ) -> SocketResult<u64>

Kernel buffer space reserved for sending/receiving on this socket. Implementations usually treat this as a cap the buffer can grow to, rather than allocating the full amount immediately. Read more
Source§

fn set_receive_buffer_size( &mut self, id: NamedId, socket: Resource<UdpSocket>, value: u64, ) -> SocketResult<()>

Source§

fn get_send_buffer_size( &mut self, id: NamedId, socket: Resource<UdpSocket>, ) -> SocketResult<u64>

Source§

fn set_send_buffer_size( &mut self, id: NamedId, socket: Resource<UdpSocket>, value: u64, ) -> SocketResult<()>

Source§

fn drop(&mut self, id: NamedId, sock: Resource<UdpSocket>) -> Result<()>

Auto Trait Implementations§

§

impl<'a, T> !UnwindSafe for WasiCtxNamedView<'a, T>

§

impl<'a, T> Freeze for WasiCtxNamedView<'a, T>

§

impl<'a, T> RefUnwindSafe for WasiCtxNamedView<'a, T>

§

impl<'a, T> Send for WasiCtxNamedView<'a, T>
where &'a mut T: Send,

§

impl<'a, T> Sync for WasiCtxNamedView<'a, T>
where &'a mut T: Sync,

§

impl<'a, T> Unpin for WasiCtxNamedView<'a, T>

§

impl<'a, T> UnsafeUnpin for WasiCtxNamedView<'a, T>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
§

impl<T> MaybeSendSync for T

§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

impl<T> Pointee for T

§

type Pointer = u32

§

fn debug( pointer: <T as Pointee>::Pointer, f: &mut Formatter<'_>, ) -> Result<(), Error>

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more