File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -51,16 +51,16 @@ pub async fn open(ctx: Ctx<'_>, options: OpenOptions) -> Result<Database> {
5151
5252#[ derive( Debug , Clone ) ]
5353pub struct OpenOptions {
54- filename : Option < PathBuf > ,
55- in_memory : bool ,
56- wal : bool ,
57- page_size : u32 ,
58- foreign_keys : bool ,
59- max_connections : u32 ,
60- min_connections : u32 ,
61- idle_timeout : Option < Duration > ,
62- max_lifetime : Option < Duration > ,
63- busy_timeout : Duration ,
54+ pub filename : Option < PathBuf > ,
55+ pub in_memory : bool ,
56+ pub wal : bool ,
57+ pub page_size : u32 ,
58+ pub foreign_keys : bool ,
59+ pub max_connections : u32 ,
60+ pub min_connections : u32 ,
61+ pub idle_timeout : Option < Duration > ,
62+ pub max_lifetime : Option < Duration > ,
63+ pub busy_timeout : Duration ,
6464}
6565
6666impl Default for OpenOptions {
You can’t perform that action at this time.
0 commit comments