We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a523e3 commit 86190daCopy full SHA for 86190da
crates/macros/src/interface.rs
@@ -69,7 +69,7 @@ impl<'a> ParsedTrait<'a> {
69
self.functions.push(FnBuilder {
70
builder,
71
vis: opts.vis,
72
- r#abstract: false,
+ r#abstract: true,
73
});
74
}
75
crates/macros/src/lib.rs
@@ -6,7 +6,6 @@ mod fastcall;
6
mod function;
7
mod helpers;
8
mod impl_;
9
-mod interface;
10
mod module;
11
mod syn_ext;
12
mod zval;
src/lib.rs
@@ -47,8 +47,8 @@ pub mod prelude {
47
pub use crate::php_println;
48
pub use crate::types::ZendCallable;
49
pub use crate::{
50
- php_class, php_const, php_extern, php_function, php_impl, php_interface, php_module,
51
- wrap_constant, wrap_function, zend_fastcall, ZvalConvert,
+ php_class, php_const, php_extern, php_function, php_impl, php_module, wrap_constant,
+ wrap_function, zend_fastcall, ZvalConvert,
52
};
53
54
@@ -62,6 +62,6 @@ pub const PHP_DEBUG: bool = cfg!(php_debug);
62
pub const PHP_ZTS: bool = cfg!(php_zts);
63
64
pub use ext_php_rs_derive::{
65
66
67
0 commit comments