pub struct Packet {
    pub size: usize,
    pub routing_info: RefCell<RoutingInfo>,
    pub message: Rc<Message>,
    pub index: usize,
    pub cycle_into_network: RefCell<usize>,
    pub extra: RefCell<Option<PacketExtraInfo>>,
}
Expand description

A portion of a message. They are divided into phits. All phits must go through the same queues without phits of other packets in between.

Fields

size: usize

Number of phits

routing_info: RefCell<RoutingInfo>

Information for the routing

message: Rc<Message>

The message to what this packet belongs.

index: usize

position inside the message

cycle_into_network: RefCell<usize>

The cycle when the packet has touched the first router. This is, the packet leading phit has been inserted into a router. We set it to 0 if the packet has not entered the network yet.

extra: RefCell<Option<PacketExtraInfo>>

Extra info tracked for some special statistics.

Trait Implementations

Formats the value using the given formatter. Read more

Get the total memory currently being employed by the implementing type. Both stack and heap.

Prints by stdout how much memory is used per component.

Get an estimation on how much memory the type could reach during the simulation.

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

Performs the conversion.

Performs the conversion.

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.