Struct qcs_api_client_openapi::models::operation::Operation
source · pub struct Operation {
pub characteristics: Vec<Characteristic>,
pub name: String,
pub node_count: Option<i64>,
pub parameters: Vec<Parameter>,
pub sites: Vec<OperationSite>,
}Fields§
§characteristics: Vec<Characteristic>The list of site-independent characteristics of this operation.
name: StringThe name of the operation.
node_count: Option<i64>The number of nodes that this operation applies to. None if unspecified.
parameters: Vec<Parameter>The list of parameters. Each parameter must be uniquely named. May be empty.
sites: Vec<OperationSite>The list of sites at which this operation can be applied, together with its site-dependent characteristics.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Operation
impl<'de> Deserialize<'de> for Operation
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 Operation
impl PartialEq for Operation
impl StructuralPartialEq for Operation
Auto Trait Implementations§
impl Freeze for Operation
impl RefUnwindSafe for Operation
impl Send for Operation
impl Sync for Operation
impl Unpin for Operation
impl UnwindSafe for Operation
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