usecrate::mv::MotionVector;#[derive(Debug, Clone, Copy)]/// Decoded block entry from a packed vector stream.
pubstructFakeBlockData{/// Block origin on the analysis grid, in pixels.
pubx:i32,
/// Block origin on the analysis grid, in pixels.
puby:i32,
/// Motion vector stored for this block.
pubvector: MotionVector,
}implFakeBlockData{pub(crate)constfnupdate(&mutself, src: MotionVector){self.vector = src;}}