pub type MaybeAlloced<T> = Result<<T as PacketPerms>::Alloced, BoundPacketView<T>>;Expand description
Packet that may be alloced.
Ok represents alloced, Err represents unalloced (bound packet view).
Aliased Type§
pub enum MaybeAlloced<T> {
Ok(<T as PacketPerms>::Alloced),
Err(BoundPacketView<T>),
}Variants§
Ok(<T as PacketPerms>::Alloced)
Contains the success value
Err(BoundPacketView<T>)
Contains the error value