pub enum ResolvedNandoArgument {
Object(ObjectArgument),
Objects(Vec<ObjectArgument>),
Value(ScalarValue),
ControlBlock(EcbId),
}Variants§
Implementations§
source§impl ResolvedNandoArgument
impl ResolvedNandoArgument
pub fn get_inner_object_argument(&self) -> Option<&ObjectArgument>
pub fn get_inner_object_arguments(&self) -> Vec<&ObjectArgument>
pub fn get_inner_object_argument_mut(&mut self) -> Option<&mut ObjectArgument>
Trait Implementations§
source§impl Clone for ResolvedNandoArgument
impl Clone for ResolvedNandoArgument
source§fn clone(&self) -> ResolvedNandoArgument
fn clone(&self) -> ResolvedNandoArgument
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 ResolvedNandoArgument
impl Debug for ResolvedNandoArgument
Auto Trait Implementations§
impl !RefUnwindSafe for ResolvedNandoArgument
impl Send for ResolvedNandoArgument
impl Sync for ResolvedNandoArgument
impl Unpin for ResolvedNandoArgument
impl !UnwindSafe for ResolvedNandoArgument
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