12 lines
198 B
Rust
12 lines
198 B
Rust
|
#[repr(C)]
|
||
|
#[derive(Debug, Clone)]
|
||
|
pub struct FrameOptions {
|
||
|
pub clear_history: bool,
|
||
|
}
|
||
|
|
||
|
#[repr(C)]
|
||
|
#[derive(Debug, Clone)]
|
||
|
pub struct FilterChainOptions {
|
||
|
pub use_deferred_context: bool,
|
||
|
}
|