mirror of
https://github.com/servo/servo.git
synced 2025-09-30 08:39:16 +01:00
Fix a large number of backend issues that were masking everything else. There probably is still more, but it'll take more integration/unit testing to find it. Testing: WPT Fixes: #38743 --------- Signed-off-by: Ashwin Naren <arihant2math@gmail.com>
24 lines
577 B
Rust
24 lines
577 B
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
use sea_query::Iden;
|
|
|
|
#[derive(Iden)]
|
|
#[expect(unused)]
|
|
pub enum Column {
|
|
#[iden = "database"]
|
|
Table,
|
|
Name,
|
|
Origin,
|
|
Version,
|
|
}
|
|
|
|
#[allow(dead_code)]
|
|
#[derive(Clone, Debug, Eq, PartialEq)]
|
|
pub struct Model {
|
|
pub name: String,
|
|
pub origin: String,
|
|
pub version: i64,
|
|
// TODO: Hold timestamp for vacuuming
|
|
// TODO: implement vacuuming
|
|
}
|