pub struct ComponentArrayPostQuery {Show 19 fields
pub component_ids: Option<Vec<String>>,
pub partition: Option<String>,
pub group: Option<String>,
pub state_only: Option<bool>,
pub falg_only: Option<bool>,
pub role_only: Option<bool>,
pub nid_only: Option<bool>,
pub type: Option<String>,
pub state: Option<String>,
pub flag: Option<String>,
pub enabled: Option<String>,
pub software_status: Option<String>,
pub role: Option<String>,
pub subrole: Option<String>,
pub subtype: Option<String>,
pub class: Option<String>,
pub nid: Option<String>,
pub nid_start: Option<String>,
pub nid_end: Option<String>,
/* private fields */
}
Fields§
§component_ids: Option<Vec<String>>
§partition: Option<String>
§group: Option<String>
§state_only: Option<bool>
§falg_only: Option<bool>
§role_only: Option<bool>
§nid_only: Option<bool>
§type: Option<String>
§state: Option<String>
§flag: Option<String>
§enabled: Option<String>
§software_status: Option<String>
§role: Option<String>
§subrole: Option<String>
§subtype: Option<String>
§class: Option<String>
§nid: Option<String>
§nid_start: Option<String>
§nid_end: Option<String>
Trait Implementations§
Source§impl Clone for ComponentArrayPostQuery
impl Clone for ComponentArrayPostQuery
Source§fn clone(&self) -> ComponentArrayPostQuery
fn clone(&self) -> ComponentArrayPostQuery
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ComponentArrayPostQuery
impl Debug for ComponentArrayPostQuery
Source§impl<'de> Deserialize<'de> for ComponentArrayPostQuery
impl<'de> Deserialize<'de> for ComponentArrayPostQuery
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
Auto Trait Implementations§
impl Freeze for ComponentArrayPostQuery
impl RefUnwindSafe for ComponentArrayPostQuery
impl Send for ComponentArrayPostQuery
impl Sync for ComponentArrayPostQuery
impl Unpin for ComponentArrayPostQuery
impl UnwindSafe for ComponentArrayPostQuery
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more