pub struct GetNodesParams {
pub xname: String,
pub include_siblings: bool,
pub status_filter: Option<String>,
}Expand description
Typed parameters for fetching node details.
Fields§
§xname: StringComma-separated xnames, NIDs, or hostlist expression
(e.g. x3000c0s1b0n[0-3]).
include_siblings: boolWhen true, also return nodes sharing a power supply with any requested node.
status_filter: Option<String>Optional power-status filter (e.g. ON, OFF, READY).
Auto Trait Implementations§
impl Freeze for GetNodesParams
impl RefUnwindSafe for GetNodesParams
impl Send for GetNodesParams
impl Sync for GetNodesParams
impl Unpin for GetNodesParams
impl UnsafeUnpin for GetNodesParams
impl UnwindSafe for GetNodesParams
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