pub struct NodesStartallRequest {
pub force: Option<PveBoolean>,
pub max_workers: Option<i32>,
pub vms: Option<String>,
}Fields§
§force: Option<PveBoolean>Issue start command even if virtual guest have ‘onboot’ not set or set to off.
max_workers: Option<i32>Defines the maximum number of tasks running concurrently. If not set, uses ‘max_workers’ from datacenter.cfg, and if that’s not set, the available CPU threads, clamped to a maximum of 8, are used.
vms: Option<String>Only consider guests from this comma separated list of VMIDs.
Implementations§
Source§impl NodesStartallRequest
impl NodesStartallRequest
pub fn new() -> NodesStartallRequest
Trait Implementations§
Source§impl Clone for NodesStartallRequest
impl Clone for NodesStartallRequest
Source§fn clone(&self) -> NodesStartallRequest
fn clone(&self) -> NodesStartallRequest
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 moreSource§impl Debug for NodesStartallRequest
impl Debug for NodesStartallRequest
Source§impl Default for NodesStartallRequest
impl Default for NodesStartallRequest
Source§fn default() -> NodesStartallRequest
fn default() -> NodesStartallRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NodesStartallRequest
impl<'de> Deserialize<'de> for NodesStartallRequest
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 PartialEq for NodesStartallRequest
impl PartialEq for NodesStartallRequest
Source§fn eq(&self, other: &NodesStartallRequest) -> bool
fn eq(&self, other: &NodesStartallRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NodesStartallRequest
impl Serialize for NodesStartallRequest
impl StructuralPartialEq for NodesStartallRequest
Auto Trait Implementations§
impl Freeze for NodesStartallRequest
impl RefUnwindSafe for NodesStartallRequest
impl Send for NodesStartallRequest
impl Sync for NodesStartallRequest
impl Unpin for NodesStartallRequest
impl UnsafeUnpin for NodesStartallRequest
impl UnwindSafe for NodesStartallRequest
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