pub struct InstrumentationFilterMasterInterface {
obj: *mut ConfObject,
interface: *mut instrumentation_filter_master_interface,
}
Expand description
Automatically generated structure for the interface
Fields§
§obj: *mut ConfObject
§interface: *mut instrumentation_filter_master_interface
Implementations§
source§impl InstrumentationFilterMasterInterface
impl InstrumentationFilterMasterInterface
sourcepub fn set_source_id(&mut self, source_id: c_uint) -> Result<()>
pub fn set_source_id(&mut self, source_id: c_uint) -> Result<()>
Automatically generated method for the interface
sourcepub fn add_slave(
&mut self,
slave: *mut conf_object_t,
provider_obj: *mut conf_object_t,
) -> Result<bool>
pub fn add_slave( &mut self, slave: *mut conf_object_t, provider_obj: *mut conf_object_t, ) -> Result<bool>
Automatically generated method for the interface
sourcepub fn remove_slave(
&mut self,
slave: *mut conf_object_t,
provider_obj: *mut conf_object_t,
) -> Result<()>
pub fn remove_slave( &mut self, slave: *mut conf_object_t, provider_obj: *mut conf_object_t, ) -> Result<()>
Automatically generated method for the interface
sourcepub fn short_filter_config(&mut self) -> Result<*mut c_char>
pub fn short_filter_config(&mut self) -> Result<*mut c_char>
Automatically generated method for the interface
Trait Implementations§
source§impl Interface for InstrumentationFilterMasterInterface
impl Interface for InstrumentationFilterMasterInterface
source§const NAME: &'static [u8] = crate::api::sys::INSTRUMENTATION_FILTER_MASTER_INTERFACE
const NAME: &'static [u8] = crate::api::sys::INSTRUMENTATION_FILTER_MASTER_INTERFACE
The name of the interface
source§type InternalInterface = instrumentation_filter_master_interface
type InternalInterface = instrumentation_filter_master_interface
The inner interface type, which is a struct of nullable extern “C” function pointers
and must be default constructable as all NULL pointers (i.e. None values)
source§type Name = &'static [u8]
type Name = &'static [u8]
The type of the name of the interface, must be convertible to raw C string to pass to
the simulator
source§fn new(obj: *mut ConfObject, interface: *mut Self::InternalInterface) -> Self
fn new(obj: *mut ConfObject, interface: *mut Self::InternalInterface) -> Self
Create a new instance of this interface
Auto Trait Implementations§
impl Freeze for InstrumentationFilterMasterInterface
impl RefUnwindSafe for InstrumentationFilterMasterInterface
impl !Send for InstrumentationFilterMasterInterface
impl !Sync for InstrumentationFilterMasterInterface
impl Unpin for InstrumentationFilterMasterInterface
impl UnwindSafe for InstrumentationFilterMasterInterface
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more