1 2 3 4 5 6 7 8 9 10 11 12
/// Immutable session state carried into one Xiaohongshu signing operation. #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub struct XiaohongshuSignState { /// Page load timestamp in milliseconds. pub page_load_timestamp: u64, /// Monotonic sequence counter. pub sequence_value: u32, /// Simulated browser window property length. pub window_props_length: u32, /// URI length for the current request. pub uri_length: u32, }