@@ -618,9 +618,9 @@ impl SendPacket {
618618 timeout_timestamp_attr_on_b : packet. header . timeout_timestamp_on_b . into ( ) ,
619619 seq_attr_on_a : packet. header . seq_on_a . into ( ) ,
620620 port_id_attr_on_a : payload. header . source_port . 1 . into ( ) ,
621- chan_id_attr_on_a : ChannelId :: from ( packet. header . source_client ) . into ( ) ,
621+ chan_id_attr_on_a : packet. header . source_client . into ( ) ,
622622 port_id_attr_on_b : payload. header . target_port . 1 . into ( ) ,
623- chan_id_attr_on_b : ChannelId :: from ( packet. header . target_client ) . into ( ) ,
623+ chan_id_attr_on_b : packet. header . target_client . into ( ) ,
624624 channel_ordering_attr : channel_ordering. into ( ) ,
625625 conn_id_attr_on_a : src_connection_id. into ( ) ,
626626 }
@@ -730,9 +730,9 @@ impl ReceivePacket {
730730 timeout_timestamp_attr_on_b : packet. header . timeout_timestamp_on_b . into ( ) ,
731731 seq_attr_on_a : packet. header . seq_on_a . into ( ) ,
732732 port_id_attr_on_a : payload. header . source_port . 1 . into ( ) ,
733- chan_id_attr_on_a : ChannelId :: from ( packet. header . source_client ) . into ( ) ,
733+ chan_id_attr_on_a : packet. header . source_client . into ( ) ,
734734 port_id_attr_on_b : payload. header . target_port . 1 . into ( ) ,
735- chan_id_attr_on_b : ChannelId :: from ( packet. header . target_client ) . into ( ) ,
735+ chan_id_attr_on_b : packet. header . target_client . into ( ) ,
736736 channel_ordering_attr : channel_ordering. into ( ) ,
737737 conn_id_attr_on_b : dst_connection_id. into ( ) ,
738738 }
@@ -846,9 +846,9 @@ impl WriteAcknowledgement {
846846 timeout_timestamp_attr_on_b : packet. header . timeout_timestamp_on_b . into ( ) ,
847847 seq_attr_on_a : packet. header . seq_on_a . into ( ) ,
848848 port_id_attr_on_a : payload. header . source_port . 1 . into ( ) ,
849- chan_id_attr_on_a : ChannelId :: from ( packet. header . source_client ) . into ( ) ,
849+ chan_id_attr_on_a : packet. header . source_client . into ( ) ,
850850 port_id_attr_on_b : payload. header . target_port . 1 . into ( ) ,
851- chan_id_attr_on_b : ChannelId :: from ( packet. header . target_client ) . into ( ) ,
851+ chan_id_attr_on_b : packet. header . target_client . into ( ) ,
852852 acknowledgement : acknowledgement. into ( ) ,
853853 conn_id_attr_on_b : conn_id_on_b. into ( ) ,
854854 }
@@ -956,9 +956,9 @@ impl AcknowledgePacket {
956956 timeout_timestamp_attr_on_b : packet. header . timeout_timestamp_on_b . into ( ) ,
957957 seq_on_a : packet. header . seq_on_a . into ( ) ,
958958 port_id_attr_on_a : payload. header . source_port . 1 . into ( ) ,
959- chan_id_attr_on_a : ChannelId :: from ( packet. header . source_client ) . into ( ) ,
959+ chan_id_attr_on_a : packet. header . source_client . into ( ) ,
960960 port_id_attr_on_b : payload. header . target_port . 1 . into ( ) ,
961- chan_id_attr_on_b : ChannelId :: from ( packet. header . target_client ) . into ( ) ,
961+ chan_id_attr_on_b : packet. header . target_client . into ( ) ,
962962 channel_ordering_attr : channel_ordering. into ( ) ,
963963 conn_id_attr_on_a : src_connection_id. into ( ) ,
964964 }
@@ -1059,9 +1059,9 @@ impl TimeoutPacket {
10591059 timeout_timestamp_attr_on_b : packet. header . timeout_timestamp_on_b . into ( ) ,
10601060 seq_attr_on_a : packet. header . seq_on_a . into ( ) ,
10611061 port_id_attr_on_a : payload. header . source_port . 1 . into ( ) ,
1062- chan_id_attr_on_a : ChannelId :: from ( packet. header . source_client ) . into ( ) ,
1062+ chan_id_attr_on_a : packet. header . source_client . into ( ) ,
10631063 port_id_attr_on_b : payload. header . target_port . 1 . into ( ) ,
1064- chan_id_attr_on_b : ChannelId :: from ( packet. header . target_client ) . into ( ) ,
1064+ chan_id_attr_on_b : packet. header . target_client . into ( ) ,
10651065 channel_ordering_attr : channel_ordering. into ( ) ,
10661066 }
10671067 }
0 commit comments