Expand description
De/serialization functionality
Requires feature serde
Modules§
- json
- De/serialization via the JSON format
Requires feature
serde_json
Functions§
- load
- Load cookies from
reader
, deserializing withcookie_from_str
, skipping any expired cookies - load_
all - Load cookies from
reader
, deserializing withcookie_from_str
, loading both unexpired and expired cookies - save
- Serialize any unexpired and persistent cookies in the store with
cookie_to_string
and write them towriter
- save_
incl_ expired_ and_ nonpersistent - Serialize all (including expired and non-persistent) cookies in the store with
cookie_to_string
and write them towriter