pub enum InlineAssemblyFlagsItem {
MemorySafe,
}
Expand description
InlineAssemblyFlagsItem
JSON schema
{
"enum": [
"memory-safe"
]
}
Variants§
MemorySafe
Trait Implementations§
Source§impl Clone for InlineAssemblyFlagsItem
impl Clone for InlineAssemblyFlagsItem
Source§fn clone(&self) -> InlineAssemblyFlagsItem
fn clone(&self) -> InlineAssemblyFlagsItem
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 InlineAssemblyFlagsItem
impl Debug for InlineAssemblyFlagsItem
Source§impl<'de> Deserialize<'de> for InlineAssemblyFlagsItem
impl<'de> Deserialize<'de> for InlineAssemblyFlagsItem
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<&InlineAssemblyFlagsItem> for InlineAssemblyFlagsItem
impl From<&InlineAssemblyFlagsItem> for InlineAssemblyFlagsItem
Source§fn from(value: &InlineAssemblyFlagsItem) -> Self
fn from(value: &InlineAssemblyFlagsItem) -> Self
Converts to this type from the input type.
Source§impl FromStr for InlineAssemblyFlagsItem
impl FromStr for InlineAssemblyFlagsItem
Source§impl Hash for InlineAssemblyFlagsItem
impl Hash for InlineAssemblyFlagsItem
Source§impl Ord for InlineAssemblyFlagsItem
impl Ord for InlineAssemblyFlagsItem
Source§fn cmp(&self, other: &InlineAssemblyFlagsItem) -> Ordering
fn cmp(&self, other: &InlineAssemblyFlagsItem) -> 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 InlineAssemblyFlagsItem
impl PartialEq for InlineAssemblyFlagsItem
Source§impl PartialOrd for InlineAssemblyFlagsItem
impl PartialOrd for InlineAssemblyFlagsItem
Source§impl Serialize for InlineAssemblyFlagsItem
impl Serialize for InlineAssemblyFlagsItem
Source§impl ToString for InlineAssemblyFlagsItem
impl ToString for InlineAssemblyFlagsItem
Source§impl TryFrom<&String> for InlineAssemblyFlagsItem
impl TryFrom<&String> for InlineAssemblyFlagsItem
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for InlineAssemblyFlagsItem
impl TryFrom<&str> for InlineAssemblyFlagsItem
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for InlineAssemblyFlagsItem
impl TryFrom<String> for InlineAssemblyFlagsItem
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for InlineAssemblyFlagsItem
impl Eq for InlineAssemblyFlagsItem
impl StructuralPartialEq for InlineAssemblyFlagsItem
Auto Trait Implementations§
impl Freeze for InlineAssemblyFlagsItem
impl RefUnwindSafe for InlineAssemblyFlagsItem
impl Send for InlineAssemblyFlagsItem
impl Sync for InlineAssemblyFlagsItem
impl Unpin for InlineAssemblyFlagsItem
impl UnwindSafe for InlineAssemblyFlagsItem
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