Formatting
This commit is contained in:
parent
9a47313adc
commit
f7df36c949
1 changed files with 9 additions and 9 deletions
|
@ -135,16 +135,16 @@ pub mod storeid {
|
||||||
pub fn setup() -> Class {
|
pub fn setup() -> Class {
|
||||||
let mut class = Class::new("RStoreId", None);
|
let mut class = Class::new("RStoreId", None);
|
||||||
class.define(|itself| {
|
class.define(|itself| {
|
||||||
itself.def_self("new" , r_storeid_new);
|
itself.def_self("new" , r_storeid_new);
|
||||||
itself.def_self("new_baseless" , r_storeid_new_baseless);
|
itself.def_self("new_baseless" , r_storeid_new_baseless);
|
||||||
|
|
||||||
itself.def("without_base" , r_storeid_without_base);
|
itself.def("without_base" , r_storeid_without_base);
|
||||||
itself.def("with_base" , r_storeid_with_base);
|
itself.def("with_base" , r_storeid_with_base);
|
||||||
itself.def("into_pathbuf" , r_storeid_into_pathbuf);
|
itself.def("into_pathbuf" , r_storeid_into_pathbuf);
|
||||||
itself.def("exists" , r_storeid_exists);
|
itself.def("exists" , r_storeid_exists);
|
||||||
itself.def("to_str" , r_storeid_to_str);
|
itself.def("to_str" , r_storeid_to_str);
|
||||||
itself.def("local" , r_storeid_local);
|
itself.def("local" , r_storeid_local);
|
||||||
});
|
});
|
||||||
class
|
class
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue