|
@@ -255,9 +255,9 @@ impl Repr {
|
|
|
/// This never calculates the checksum, and is intended for internal-use only,
|
|
|
/// not for packets that are going to be actually sent over the network. For
|
|
|
/// example, when decompressing 6lowpan.
|
|
|
- pub(crate) fn emit_header<T: ?Sized>(&self, packet: &mut Packet<&mut T>, payload_len: usize)
|
|
|
+ pub(crate) fn emit_header<T>(&self, packet: &mut Packet<&mut T>, payload_len: usize)
|
|
|
where
|
|
|
- T: AsRef<[u8]> + AsMut<[u8]>,
|
|
|
+ T: AsRef<[u8]> + AsMut<[u8]> + ?Sized,
|
|
|
{
|
|
|
packet.set_src_port(self.src_port);
|
|
|
packet.set_dst_port(self.dst_port);
|
|
@@ -266,7 +266,7 @@ impl Repr {
|
|
|
}
|
|
|
|
|
|
/// Emit a high-level representation into an User Datagram Protocol packet.
|
|
|
- pub fn emit<T: ?Sized>(
|
|
|
+ pub fn emit<T>(
|
|
|
&self,
|
|
|
packet: &mut Packet<&mut T>,
|
|
|
src_addr: &IpAddress,
|
|
@@ -275,7 +275,7 @@ impl Repr {
|
|
|
emit_payload: impl FnOnce(&mut [u8]),
|
|
|
checksum_caps: &ChecksumCapabilities,
|
|
|
) where
|
|
|
- T: AsRef<[u8]> + AsMut<[u8]>,
|
|
|
+ T: AsRef<[u8]> + AsMut<[u8]> + ?Sized,
|
|
|
{
|
|
|
packet.set_src_port(self.src_port);
|
|
|
packet.set_dst_port(self.dst_port);
|