#[repr(C)]pub struct breakpoint_manager_interface {
pub list_breakpoints: Option<unsafe extern "C" fn(mgr: *mut conf_object_t) -> attr_value_t>,
pub delete_breakpoint: Option<unsafe extern "C" fn(mgr: *mut conf_object_t, id: uint64)>,
pub get_properties: Option<unsafe extern "C" fn(mgr: *mut conf_object_t, id: uint64) -> attr_value_t>,
pub set_enabled: Option<unsafe extern "C" fn(mgr: *mut conf_object_t, id: uint64, enabled: bool) -> bool>,
pub set_temporary: Option<unsafe extern "C" fn(mgr: *mut conf_object_t, id: uint64, temporary: bool) -> bool>,
pub set_ignore_count: Option<unsafe extern "C" fn(mgr: *mut conf_object_t, id: uint64, ignore_count: uint64) -> bool>,
}
Fields§
§list_breakpoints: Option<unsafe extern "C" fn(mgr: *mut conf_object_t) -> attr_value_t>
Return a list of the breakpoint ids of all breakpoints.
delete_breakpoint: Option<unsafe extern "C" fn(mgr: *mut conf_object_t, id: uint64)>
§get_properties: Option<unsafe extern "C" fn(mgr: *mut conf_object_t, id: uint64) -> attr_value_t>
Return a dictionary with the properties for a specific breakpoint
set_enabled: Option<unsafe extern "C" fn(mgr: *mut conf_object_t, id: uint64, enabled: bool) -> bool>
§set_temporary: Option<unsafe extern "C" fn(mgr: *mut conf_object_t, id: uint64, temporary: bool) -> bool>
§set_ignore_count: Option<unsafe extern "C" fn(mgr: *mut conf_object_t, id: uint64, ignore_count: uint64) -> bool>
Trait Implementations§
source§impl Clone for breakpoint_manager_interface
impl Clone for breakpoint_manager_interface
source§fn clone(&self) -> breakpoint_manager_interface
fn clone(&self) -> breakpoint_manager_interface
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for breakpoint_manager_interface
impl Debug for breakpoint_manager_interface
source§impl Default for breakpoint_manager_interface
impl Default for breakpoint_manager_interface
source§fn default() -> breakpoint_manager_interface
fn default() -> breakpoint_manager_interface
Returns the “default value” for a type. Read more
source§impl Hash for breakpoint_manager_interface
impl Hash for breakpoint_manager_interface
source§impl Ord for breakpoint_manager_interface
impl Ord for breakpoint_manager_interface
source§fn cmp(&self, other: &breakpoint_manager_interface) -> Ordering
fn cmp(&self, other: &breakpoint_manager_interface) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for breakpoint_manager_interface
impl PartialEq for breakpoint_manager_interface
source§fn eq(&self, other: &breakpoint_manager_interface) -> bool
fn eq(&self, other: &breakpoint_manager_interface) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.source§impl PartialOrd for breakpoint_manager_interface
impl PartialOrd for breakpoint_manager_interface
impl Copy for breakpoint_manager_interface
impl Eq for breakpoint_manager_interface
impl StructuralPartialEq for breakpoint_manager_interface
Auto Trait Implementations§
impl Freeze for breakpoint_manager_interface
impl RefUnwindSafe for breakpoint_manager_interface
impl Send for breakpoint_manager_interface
impl Sync for breakpoint_manager_interface
impl Unpin for breakpoint_manager_interface
impl UnwindSafe for breakpoint_manager_interface
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)