Decode from a compressed wire body, bounded by [`DEFAULT_MAX_DECOMPRESSED`].
(bytes: &[u8])
| 193 | |
| 194 | /// Decode from a compressed wire body, bounded by [`DEFAULT_MAX_DECOMPRESSED`]. |
| 195 | pub fn decode(bytes: &[u8]) -> Result<Self, SyncError> { |
| 196 | decode(bytes) |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | /// The pull/clone request: which view refs the client wants and which object |