pub struct BulkWritableSupportedDataRateRequest {
pub id: Uuid,
pub standard: StandardEnum,
pub rate: i32,
pub mcs_index: Option<Option<i32>>,
pub custom_fields: Option<HashMap<String, Value>>,
pub relationships: Option<HashMap<String, ApprovalWorkflowDefinitionRequestRelationshipsValue>>,
pub tags: Option<Vec<ApprovalWorkflowStageResponseApprovalWorkflowStage>>,
}Expand description
BulkWritableSupportedDataRateRequest : Base class to use for serializers based on OrganizationalModel or PrimaryModel. Can also be used for models derived from BaseModel, so long as they support custom fields, notes, and relationships.
Fields§
§id: Uuid§standard: StandardEnum§rate: i32§mcs_index: Option<Option<i32>>The Modulation and Coding Scheme (MCS) index is a value used in wireless communications to define the modulation type, coding rate, and number of spatial streams used in a transmission.
custom_fields: Option<HashMap<String, Value>>§relationships: Option<HashMap<String, ApprovalWorkflowDefinitionRequestRelationshipsValue>>Implementations§
Source§impl BulkWritableSupportedDataRateRequest
impl BulkWritableSupportedDataRateRequest
Sourcepub fn new(
id: Uuid,
standard: StandardEnum,
rate: i32,
) -> BulkWritableSupportedDataRateRequest
pub fn new( id: Uuid, standard: StandardEnum, rate: i32, ) -> BulkWritableSupportedDataRateRequest
Base class to use for serializers based on OrganizationalModel or PrimaryModel. Can also be used for models derived from BaseModel, so long as they support custom fields, notes, and relationships.
Trait Implementations§
Source§impl Clone for BulkWritableSupportedDataRateRequest
impl Clone for BulkWritableSupportedDataRateRequest
Source§fn clone(&self) -> BulkWritableSupportedDataRateRequest
fn clone(&self) -> BulkWritableSupportedDataRateRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for BulkWritableSupportedDataRateRequest
impl Default for BulkWritableSupportedDataRateRequest
Source§fn default() -> BulkWritableSupportedDataRateRequest
fn default() -> BulkWritableSupportedDataRateRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BulkWritableSupportedDataRateRequest
impl<'de> Deserialize<'de> for BulkWritableSupportedDataRateRequest
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 BulkWritableSupportedDataRateRequest
impl PartialEq for BulkWritableSupportedDataRateRequest
Source§fn eq(&self, other: &BulkWritableSupportedDataRateRequest) -> bool
fn eq(&self, other: &BulkWritableSupportedDataRateRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BulkWritableSupportedDataRateRequest
Auto Trait Implementations§
impl Freeze for BulkWritableSupportedDataRateRequest
impl RefUnwindSafe for BulkWritableSupportedDataRateRequest
impl Send for BulkWritableSupportedDataRateRequest
impl Sync for BulkWritableSupportedDataRateRequest
impl Unpin for BulkWritableSupportedDataRateRequest
impl UnsafeUnpin for BulkWritableSupportedDataRateRequest
impl UnwindSafe for BulkWritableSupportedDataRateRequest
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