pub struct Meta {
pub generator: String,
pub database_name: String,
pub database_description: String,
pub custom_data: Vec<Field>,
pub memory_protection: MemoryProtection,
}Expand description
Meta information about this database
Fields§
§generator: StringApplication used to generate this database
database_name: StringShort name for the database
database_description: StringLonger description of the database
custom_data: Vec<Field>Non standard information from plugins and other clients
memory_protection: MemoryProtectionMemory protection configuration for this client
Trait Implementations§
impl Eq for Meta
impl StructuralPartialEq for Meta
Auto Trait Implementations§
impl Freeze for Meta
impl RefUnwindSafe for Meta
impl Send for Meta
impl Sync for Meta
impl Unpin for Meta
impl UnsafeUnpin for Meta
impl UnwindSafe for Meta
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more