pub struct SupportedDataRateRequest {
pub id: Option<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
SupportedDataRateRequest : 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: Option<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 SupportedDataRateRequest
impl SupportedDataRateRequest
Sourcepub fn new(standard: StandardEnum, rate: i32) -> SupportedDataRateRequest
pub fn new(standard: StandardEnum, rate: i32) -> SupportedDataRateRequest
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 SupportedDataRateRequest
impl Clone for SupportedDataRateRequest
Source§fn clone(&self) -> SupportedDataRateRequest
fn clone(&self) -> SupportedDataRateRequest
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 Debug for SupportedDataRateRequest
impl Debug for SupportedDataRateRequest
Source§impl Default for SupportedDataRateRequest
impl Default for SupportedDataRateRequest
Source§fn default() -> SupportedDataRateRequest
fn default() -> SupportedDataRateRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SupportedDataRateRequest
impl<'de> Deserialize<'de> for SupportedDataRateRequest
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 SupportedDataRateRequest
impl PartialEq for SupportedDataRateRequest
Source§impl Serialize for SupportedDataRateRequest
impl Serialize for SupportedDataRateRequest
impl StructuralPartialEq for SupportedDataRateRequest
Auto Trait Implementations§
impl Freeze for SupportedDataRateRequest
impl RefUnwindSafe for SupportedDataRateRequest
impl Send for SupportedDataRateRequest
impl Sync for SupportedDataRateRequest
impl Unpin for SupportedDataRateRequest
impl UnsafeUnpin for SupportedDataRateRequest
impl UnwindSafe for SupportedDataRateRequest
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