pub struct SocketSynchronousProxy { /* private fields */ }

Implementations§

source§

impl SocketSynchronousProxy

source

pub fn new(channel: Channel) -> Self

source

pub fn into_channel(self) -> Channel

source

pub fn wait_for_event(&self, deadline: Time) -> Result<SocketEvent, Error>

Waits until an event arrives and returns it. It is safe for other threads to make concurrent requests while waiting for an event.

source

pub fn clone2(&self, request: ServerEnd<CloneableMarker>) -> Result<(), Error>

source

pub fn close(&self, ___deadline: Time) -> Result<CloseableCloseResult, Error>

Terminates the connection.

After calling Close, the client must not send any other requests.

Servers, after sending the status response, should close the connection regardless of status and without sending an epitaph.

Closing the client end of the channel should be semantically equivalent to calling Close without knowing when the close has completed or its status.

source

pub fn query(&self, ___deadline: Time) -> Result<Vec<u8>, Error>

source

pub fn set_reuse_address( &self, value: bool, ___deadline: Time ) -> Result<BaseSocketSetReuseAddressResult, Error>

Set SOL_SOCKET -> SO_REUSEADDR.

source

pub fn get_reuse_address( &self, ___deadline: Time ) -> Result<BaseSocketGetReuseAddressResult, Error>

Get SOL_SOCKET -> SO_REUSEADDR.

source

pub fn get_error( &self, ___deadline: Time ) -> Result<BaseSocketGetErrorResult, Error>

Get SOL_SOCKET -> SO_ERROR. Returns the last error if there is an error set on the socket.

source

pub fn set_broadcast( &self, value: bool, ___deadline: Time ) -> Result<BaseSocketSetBroadcastResult, Error>

Set SOL_SOCKET -> SO_BROADCAST.

source

pub fn get_broadcast( &self, ___deadline: Time ) -> Result<BaseSocketGetBroadcastResult, Error>

Get SOL_SOCKET -> SO_BROADCAST.

source

pub fn set_send_buffer( &self, value_bytes: u64, ___deadline: Time ) -> Result<BaseSocketSetSendBufferResult, Error>

Set SOL_SOCKET -> SO_SNDBUF.

source

pub fn get_send_buffer( &self, ___deadline: Time ) -> Result<BaseSocketGetSendBufferResult, Error>

Get SOL_SOCKET -> SO_SNDBUF.

source

pub fn set_receive_buffer( &self, value_bytes: u64, ___deadline: Time ) -> Result<BaseSocketSetReceiveBufferResult, Error>

Set SOL_SOCKET -> SO_RCVBUF.

source

pub fn get_receive_buffer( &self, ___deadline: Time ) -> Result<BaseSocketGetReceiveBufferResult, Error>

Get SOL_SOCKET -> SO_RCVBUF.

source

pub fn set_keep_alive( &self, value: bool, ___deadline: Time ) -> Result<BaseSocketSetKeepAliveResult, Error>

Set SOL_SOCKET -> SO_KEEPALIVE.

source

pub fn get_keep_alive( &self, ___deadline: Time ) -> Result<BaseSocketGetKeepAliveResult, Error>

Get SOL_SOCKET -> SO_KEEPALIVE.

source

pub fn set_out_of_band_inline( &self, value: bool, ___deadline: Time ) -> Result<BaseSocketSetOutOfBandInlineResult, Error>

Set SOL_SOCKET -> SO_OOBINLINE.

source

pub fn get_out_of_band_inline( &self, ___deadline: Time ) -> Result<BaseSocketGetOutOfBandInlineResult, Error>

Get SOL_SOCKET -> SO_OOBINLINE.

source

pub fn set_no_check( &self, value: bool, ___deadline: Time ) -> Result<BaseSocketSetNoCheckResult, Error>

Set SOL_SOCKET -> SO_NO_CHECK.

source

pub fn get_no_check( &self, ___deadline: Time ) -> Result<BaseSocketGetNoCheckResult, Error>

Get SOL_SOCKET -> SO_NO_CHECK.

source

pub fn set_linger( &self, linger: bool, length_secs: u32, ___deadline: Time ) -> Result<BaseSocketSetLingerResult, Error>

Set SOL_SOCKET -> SO_LINGER.

source

pub fn get_linger( &self, ___deadline: Time ) -> Result<BaseSocketGetLingerResult, Error>

Get SOL_SOCKET -> SO_LINGER.

source

pub fn set_reuse_port( &self, value: bool, ___deadline: Time ) -> Result<BaseSocketSetReusePortResult, Error>

Set SOL_SOCKET -> SO_REUSEPORT.

source

pub fn get_reuse_port( &self, ___deadline: Time ) -> Result<BaseSocketGetReusePortResult, Error>

Get SOL_SOCKET -> SO_REUSEPORT.

source

pub fn get_accept_conn( &self, ___deadline: Time ) -> Result<BaseSocketGetAcceptConnResult, Error>

Get SOL_SOCKET -> SO_ACCEPTCONN.

source

pub fn set_bind_to_device( &self, value: &str, ___deadline: Time ) -> Result<BaseSocketSetBindToDeviceResult, Error>

Set SOL_SOCKET -> SO_BINDTODEVICE.

source

pub fn get_bind_to_device( &self, ___deadline: Time ) -> Result<BaseSocketGetBindToDeviceResult, Error>

Get SOL_SOCKET -> SO_BINDTODEVICE.

source

pub fn set_bind_to_interface_index( &self, value: u64, ___deadline: Time ) -> Result<BaseSocketSetBindToInterfaceIndexResult, Error>

Set SOL_SOCKET -> SO_BINDTOIFINDEX. If value is 0, this clears the bound interface.

source

pub fn get_bind_to_interface_index( &self, ___deadline: Time ) -> Result<BaseSocketGetBindToInterfaceIndexResult, Error>

Get SOL_SOCKET -> SO_BINDTOIFINDEX.

source

pub fn set_timestamp( &self, value: TimestampOption, ___deadline: Time ) -> Result<BaseSocketSetTimestampResult, Error>

Set SOL_SOCKET -> SO_TIMESTAMP or SO_TIMESTAMPNS.

source

pub fn get_timestamp( &self, ___deadline: Time ) -> Result<BaseSocketGetTimestampResult, Error>

Get SOL_SOCKET -> SO_TIMESTAMP or SO_TIMESTAMPNS.

source

pub fn describe( &self, ___deadline: Time ) -> Result<SocketDescribeResponse, Error>

source

pub fn bind( &self, protocol: Option<&ProtocolAssociation>, bound_interface_id: &BoundInterfaceId, ___deadline: Time ) -> Result<SocketBindResult, Error>

Bind the socket to a protocol and/or interface.

  • request protocol the socket’s new protocol association.
  • request bound_interface_id the socket’s new interface binding.
source

pub fn get_info(&self, ___deadline: Time) -> Result<SocketGetInfoResult, Error>

Returns the the socket’s properties.

  • response kind the socket’s Kind.
  • response protocol the socket’s protocol association, if associated.
  • response bound_interface properties of the socket’s interface binding.
source

pub fn recv_msg( &self, want_packet_info: bool, data_len: u32, want_control: bool, flags: RecvMsgFlags, ___deadline: Time ) -> Result<SocketRecvMsgResult, Error>

Receives a message from the socket.

  • request want_packet_info request information about the packet to be returned.
  • request data_len the maximum allowed length of the response data buffer.
  • request want_control request ancillary data to be returned.
  • request flags flags for the receive request.
  • response packet_info information about the packet, if requested.
  • response data the message.
  • response control control messages, if requested.
  • response truncated indicates whether or not the returned message was truncated.
source

pub fn send_msg( &self, packet_info: Option<&PacketInfo>, data: &[u8], control: &SendControlData, flags: SendMsgFlags, ___deadline: Time ) -> Result<SocketSendMsgResult, Error>

Sends a message on the socket.

  • request packet_info information about the packet.
  • request data the message.
  • request control ancillary data.
  • request flags flags for the send request.

Trait Implementations§

source§

impl Debug for SocketSynchronousProxy

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl SynchronousProxy for SocketSynchronousProxy

§

type Proxy = SocketProxy

The async proxy for the same protocol.
§

type Protocol = SocketMarker

The protocol which this Proxy controls.
source§

fn from_channel(inner: Channel) -> Self

Create a proxy over the given channel.
source§

fn into_channel(self) -> Channel

Convert the proxy back into a channel.
source§

fn as_channel(&self) -> &Channel

Get a reference to the proxy’s underlying channel. Read more

Auto Trait Implementations§

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> Encode<Ambiguous1> for T

§

unsafe fn encode( self, _encoder: &mut Encoder<'_>, _offset: usize, _depth: Depth ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
§

impl<T> Encode<Ambiguous2> for T

§

unsafe fn encode( self, _encoder: &mut Encoder<'_>, _offset: usize, _depth: Depth ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
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.

§

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
source§

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

§

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>,

§

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