pub enum TEE_ParamType {
None = 0,
ValueInput = 1,
ValueOutput = 2,
ValueInout = 3,
MemrefInput = 5,
MemrefOutput = 6,
MemrefInout = 7,
}Variants§
None = 0
ValueInput = 1
ValueOutput = 2
ValueInout = 3
MemrefInput = 5
MemrefOutput = 6
MemrefInout = 7
Trait Implementations§
Source§impl Clone for TEE_ParamType
impl Clone for TEE_ParamType
Source§fn clone(&self) -> TEE_ParamType
fn clone(&self) -> TEE_ParamType
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 moreSource§impl Debug for TEE_ParamType
impl Debug for TEE_ParamType
Source§impl Default for TEE_ParamType
impl Default for TEE_ParamType
Source§fn default() -> TEE_ParamType
fn default() -> TEE_ParamType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TEE_ParamType
impl<'de> Deserialize<'de> for TEE_ParamType
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
Source§impl From<TEE_ParamType> for u32
impl From<TEE_ParamType> for u32
Source§fn from(value: TEE_ParamType) -> Self
fn from(value: TEE_ParamType) -> Self
Converts to this type from the input type.
Source§impl From<u32> for TEE_ParamType
impl From<u32> for TEE_ParamType
Source§impl PartialEq for TEE_ParamType
impl PartialEq for TEE_ParamType
Source§fn eq(&self, other: &TEE_ParamType) -> bool
fn eq(&self, other: &TEE_ParamType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TEE_ParamType
impl Serialize for TEE_ParamType
impl Copy for TEE_ParamType
impl Eq for TEE_ParamType
impl StructuralPartialEq for TEE_ParamType
Auto Trait Implementations§
impl Freeze for TEE_ParamType
impl RefUnwindSafe for TEE_ParamType
impl Send for TEE_ParamType
impl Sync for TEE_ParamType
impl Unpin for TEE_ParamType
impl UnsafeUnpin for TEE_ParamType
impl UnwindSafe for TEE_ParamType
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