#[non_exhaustive]#[repr(u32)]pub enum GraphExecUpdateResult {
Success = 0,
Error = 1,
ErrorTopologyChanged = 2,
ErrorNodeTypeChanged = 3,
ErrorFunctionChanged = 4,
ErrorParametersChanged = 5,
ErrorNotSupported = 6,
ErrorUnsupportedFunctionChange = 7,
ErrorAttributesChanged = 8,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Success = 0
Error = 1
ErrorTopologyChanged = 2
ErrorNodeTypeChanged = 3
ErrorFunctionChanged = 4
ErrorParametersChanged = 5
ErrorNotSupported = 6
ErrorUnsupportedFunctionChange = 7
ErrorAttributesChanged = 8
Trait Implementations§
Source§impl Clone for GraphExecUpdateResult
impl Clone for GraphExecUpdateResult
Source§fn clone(&self) -> GraphExecUpdateResult
fn clone(&self) -> GraphExecUpdateResult
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 GraphExecUpdateResult
Source§impl Debug for GraphExecUpdateResult
impl Debug for GraphExecUpdateResult
Source§impl Display for GraphExecUpdateResult
impl Display for GraphExecUpdateResult
impl Eq for GraphExecUpdateResult
Source§impl From<CUgraphExecUpdateResult_enum> for GraphExecUpdateResult
impl From<CUgraphExecUpdateResult_enum> for GraphExecUpdateResult
Source§fn from(value: CUgraphExecUpdateResult) -> Self
fn from(value: CUgraphExecUpdateResult) -> Self
Converts to this type from the input type.
Source§impl From<GraphExecUpdateResult> for u32
impl From<GraphExecUpdateResult> for u32
Source§fn from(enum_value: GraphExecUpdateResult) -> Self
fn from(enum_value: GraphExecUpdateResult) -> Self
Converts to this type from the input type.
Source§impl From<GraphExecUpdateResult> for CUgraphExecUpdateResult
impl From<GraphExecUpdateResult> for CUgraphExecUpdateResult
Source§fn from(value: GraphExecUpdateResult) -> Self
fn from(value: GraphExecUpdateResult) -> Self
Converts to this type from the input type.
Source§impl Hash for GraphExecUpdateResult
impl Hash for GraphExecUpdateResult
Source§impl PartialEq for GraphExecUpdateResult
impl PartialEq for GraphExecUpdateResult
Source§fn eq(&self, other: &GraphExecUpdateResult) -> bool
fn eq(&self, other: &GraphExecUpdateResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GraphExecUpdateResult
Source§impl TryFrom<u32> for GraphExecUpdateResult
impl TryFrom<u32> for GraphExecUpdateResult
Source§type Error = TryFromPrimitiveError<GraphExecUpdateResult>
type Error = TryFromPrimitiveError<GraphExecUpdateResult>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for GraphExecUpdateResult
impl TryFromPrimitive for GraphExecUpdateResult
const NAME: &'static str = "GraphExecUpdateResult"
type Primitive = u32
type Error = TryFromPrimitiveError<GraphExecUpdateResult>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
Auto Trait Implementations§
impl Freeze for GraphExecUpdateResult
impl RefUnwindSafe for GraphExecUpdateResult
impl Send for GraphExecUpdateResult
impl Sync for GraphExecUpdateResult
impl Unpin for GraphExecUpdateResult
impl UnsafeUnpin for GraphExecUpdateResult
impl UnwindSafe for GraphExecUpdateResult
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