(&self, encoder: &mut E)
| 36 | |
| 37 | impl Encode for VirtualFunction { |
| 38 | fn encode<E: Encoder>(&self, encoder: &mut E) -> Result<(), EncodeError> { |
| 39 | self.id.encode(encoder)?; |
| 40 | self.chunk.as_ref().encode(encoder)?; |
| 41 | Ok(()) |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | impl Serialize for VirtualFunction { |
nothing calls this directly
no outgoing calls
no test coverage detected