pub struct SystemCallInfo {
pub name: String,
pub category: String,
pub whitelisted: bool,
pub risk_level: u32,
}Expand description
System call information
Fields§
§name: String§category: String§whitelisted: bool§risk_level: u32Trait Implementations§
Source§impl Clone for SystemCallInfo
impl Clone for SystemCallInfo
Source§fn clone(&self) -> SystemCallInfo
fn clone(&self) -> SystemCallInfo
Returns a duplicate 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 SystemCallInfo
impl Debug for SystemCallInfo
Source§impl<'de> Deserialize<'de> for SystemCallInfo
impl<'de> Deserialize<'de> for SystemCallInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SystemCallInfo
impl RefUnwindSafe for SystemCallInfo
impl Send for SystemCallInfo
impl Sync for SystemCallInfo
impl Unpin for SystemCallInfo
impl UnsafeUnpin for SystemCallInfo
impl UnwindSafe for SystemCallInfo
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