pub type AppendMode = VSMapAppendMode;
#[repr(C)]pub enum AppendMode { Replace = 0, Append = 1, }
All existing values associated with the key will be replaced with the new value.
The new value will be appended to the list of existing values associated with the key.