pub enum NandoArgument {
Ref(IPtr),
MRef(IPtrList),
Value(ScalarValue),
UnresolvedArgument(usize),
TaskedUnresolvedArgument((EcbId, usize)),
}Variants§
Ref(IPtr)
MRef(IPtrList)
Value(ScalarValue)
UnresolvedArgument(usize)
TaskedUnresolvedArgument((EcbId, usize))
Implementations§
source§impl NandoArgument
impl NandoArgument
Trait Implementations§
source§impl Clone for NandoArgument
impl Clone for NandoArgument
source§fn clone(&self) -> NandoArgument
fn clone(&self) -> NandoArgument
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 NandoArgument
impl Debug for NandoArgument
source§impl From<&IPtr> for NandoArgument
impl From<&IPtr> for NandoArgument
source§impl From<&NandoArgument> for NandoArgumentSerializable
impl From<&NandoArgument> for NandoArgumentSerializable
source§fn from(value: &NandoArgument) -> Self
fn from(value: &NandoArgument) -> Self
Converts to this type from the input type.
source§impl From<&NandoArgumentSerializable> for NandoArgument
impl From<&NandoArgumentSerializable> for NandoArgument
source§fn from(value: &NandoArgumentSerializable) -> Self
fn from(value: &NandoArgumentSerializable) -> Self
Converts to this type from the input type.
source§impl From<&ScalarValue> for NandoArgument
impl From<&ScalarValue> for NandoArgument
source§fn from(value: &ScalarValue) -> Self
fn from(value: &ScalarValue) -> Self
Converts to this type from the input type.
source§impl<T> From<&TypedIPtr<T>> for NandoArgument
impl<T> From<&TypedIPtr<T>> for NandoArgument
source§impl From<IPtr> for NandoArgument
impl From<IPtr> for NandoArgument
source§impl<V> From<Option<V>> for NandoArgumentwhere
ScalarValue: From<Option<V>>,
impl<V> From<Option<V>> for NandoArgumentwhere ScalarValue: From<Option<V>>,
source§impl From<String> for NandoArgument
impl From<String> for NandoArgument
source§impl<T> From<TypedIPtr<T>> for NandoArgument
impl<T> From<TypedIPtr<T>> for NandoArgument
source§impl From<bool> for NandoArgument
impl From<bool> for NandoArgument
source§impl From<i32> for NandoArgument
impl From<i32> for NandoArgument
source§impl From<u128> for NandoArgument
impl From<u128> for NandoArgument
source§impl From<u64> for NandoArgument
impl From<u64> for NandoArgument
Auto Trait Implementations§
impl RefUnwindSafe for NandoArgument
impl Send for NandoArgument
impl Sync for NandoArgument
impl Unpin for NandoArgument
impl UnwindSafe for NandoArgument
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