pub struct SupportedDataRate {Show 13 fields
pub id: Option<Uuid>,
pub object_type: Option<String>,
pub display: Option<String>,
pub url: Option<String>,
pub natural_slug: Option<String>,
pub standard: StandardEnum,
pub rate: i32,
pub mcs_index: Option<Option<i32>>,
pub created: Option<Option<String>>,
pub last_updated: Option<Option<String>>,
pub notes_url: Option<String>,
pub custom_fields: Option<HashMap<String, Value>>,
pub tags: Option<Vec<ApprovalWorkflowStageResponseApprovalWorkflowStage>>,
}Expand description
SupportedDataRate : 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>§object_type: Option<String>§display: Option<String>Human friendly display value
url: Option<String>§natural_slug: Option<String>§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.
created: Option<Option<String>>§last_updated: Option<Option<String>>§notes_url: Option<String>§custom_fields: Option<HashMap<String, Value>>Implementations§
Source§impl SupportedDataRate
impl SupportedDataRate
Sourcepub fn new(standard: StandardEnum, rate: i32) -> SupportedDataRate
pub fn new(standard: StandardEnum, rate: i32) -> SupportedDataRate
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 SupportedDataRate
impl Clone for SupportedDataRate
Source§fn clone(&self) -> SupportedDataRate
fn clone(&self) -> SupportedDataRate
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 SupportedDataRate
impl Debug for SupportedDataRate
Source§impl Default for SupportedDataRate
impl Default for SupportedDataRate
Source§fn default() -> SupportedDataRate
fn default() -> SupportedDataRate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SupportedDataRate
impl<'de> Deserialize<'de> for SupportedDataRate
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 SupportedDataRate
impl PartialEq for SupportedDataRate
Source§impl Serialize for SupportedDataRate
impl Serialize for SupportedDataRate
impl StructuralPartialEq for SupportedDataRate
Auto Trait Implementations§
impl Freeze for SupportedDataRate
impl RefUnwindSafe for SupportedDataRate
impl Send for SupportedDataRate
impl Sync for SupportedDataRate
impl Unpin for SupportedDataRate
impl UnsafeUnpin for SupportedDataRate
impl UnwindSafe for SupportedDataRate
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