pub enum RegistrationKind {
Custom,
Syscall,
}Expand description
User-custom vs framework-syscall discriminator on
OpRegistration. Iterators surface entries filtered by kind.
Variants§
Custom
User-shipped custom op (emitted by bb::register_op!).
Syscall
Framework-shipped syscall (emitted by every bb-ops
component inventory submission).
Trait Implementations§
Source§impl Clone for RegistrationKind
impl Clone for RegistrationKind
Source§fn clone(&self) -> RegistrationKind
fn clone(&self) -> RegistrationKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RegistrationKind
Source§impl Debug for RegistrationKind
impl Debug for RegistrationKind
impl Eq for RegistrationKind
Source§impl PartialEq for RegistrationKind
impl PartialEq for RegistrationKind
Source§fn eq(&self, other: &RegistrationKind) -> bool
fn eq(&self, other: &RegistrationKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RegistrationKind
Auto Trait Implementations§
impl Freeze for RegistrationKind
impl RefUnwindSafe for RegistrationKind
impl Send for RegistrationKind
impl Sync for RegistrationKind
impl Unpin for RegistrationKind
impl UnsafeUnpin for RegistrationKind
impl UnwindSafe for RegistrationKind
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