pub enum ServerMockerInstruction {
    SendMessage(BinaryMessage),
    SendMessageDependingOnLastReceivedMessage(fn(_: Option<BinaryMessage>) -> Option<BinaryMessage>),
    ReceiveMessage,
    ReceiveMessageWithMaxSize(usize),
    StopExchange,
}
Expand description

Type of network instruction executed by the server mocker.

Variants

SendMessage(BinaryMessage)

Send given message to the client

SendMessageDependingOnLastReceivedMessage(fn(_: Option<BinaryMessage>) -> Option<BinaryMessage>)

Send a message to the client depending on the last received message

If the given function returns None, no message is sent

Example

use socket_server_mocker::server_mocker_instruction::{BinaryMessage, ServerMockerInstruction};
use socket_server_mocker::server_mocker_instruction::ServerMockerInstruction::SendMessageDependingOnLastReceivedMessage;
SendMessageDependingOnLastReceivedMessage(|last_received_message: Option<BinaryMessage>| {
   if let Some(last_received_message) = last_received_message {
      if last_received_message == vec![0x01, 0x02, 0x03] {
        Some(vec![0x04, 0x05, 0x06])
     } else {
       None
    }
  } else {
   None
}
});

ReceiveMessage

Wait for a message to be received.

The message could be recovered with ServerMocker::pop_received_message

ReceiveMessageWithMaxSize(usize)

Wait for a message to be received with a maximum size (useful in UDP).

If the message is bigger than the given size, the message is truncated.

The message could be recovered with ServerMocker::pop_received_message

StopExchange

Stop the exchange with the client, close the connection in case of TCP

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.