pub struct MethodActionArgument {
pub value: Option<VimAny>,
}Expand description
This data object type defines a named argument for an operation.
§How to access
ScheduledTask::reconfigure_scheduled_task(spec).action→MethodAction.argument?[*]ScheduledTaskManager::create_scheduled_task(spec).action→MethodAction.argument?[*]ScheduledTaskManager::create_object_scheduled_task(spec).action→MethodAction.argument?[*]Alarm::reconfigure_alarm(spec).action?→AlarmTriggeringAction.action→MethodAction.argument?[*]AlarmManager::create_alarm(spec).action?→AlarmTriggeringAction.action→MethodAction.argument?[*]
Fields§
§value: Option<VimAny>The value of the argument.
Trait Implementations§
Source§impl Debug for MethodActionArgument
impl Debug for MethodActionArgument
Source§impl Deserialize for MethodActionArgument
impl Deserialize for MethodActionArgument
Source§impl VimObjectTrait for MethodActionArgument
impl VimObjectTrait for MethodActionArgument
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for MethodActionArgument
Auto Trait Implementations§
impl Freeze for MethodActionArgument
impl !RefUnwindSafe for MethodActionArgument
impl Send for MethodActionArgument
impl Sync for MethodActionArgument
impl Unpin for MethodActionArgument
impl UnsafeUnpin for MethodActionArgument
impl !UnwindSafe for MethodActionArgument
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