#[derive(Clone, Debug)]
pub struct DefaultCharset {
pub default_charset_collation: u32,
pub charset_collations: Vec<(u32, u32)>,
}
impl DefaultCharset {
pub fn new(default_charset_collation: u32, charset_collations: Vec<(u32, u32)>) -> Self {
Self {
default_charset_collation,
charset_collations,
}
}
}