pub struct SimulationAddress {
pub site_id: u16,
pub application_id: u16,
}
Expand description
Implemented according to IEEE 1278.1-2012 §6.2.80
Fields§
§site_id: u16
Identification number representing the site, which may be a facility, installation, organizational unit, or a geographical location. Valid site ID values range from 1 to 65,534
application_id: u16
Identification number representing the software program that is used to generate and process distributed simulation data. Valid application ID values range from 1 to 65,534
Implementations§
Trait Implementations§
Source§impl Clone for SimulationAddress
impl Clone for SimulationAddress
Source§fn clone(&self) -> SimulationAddress
fn clone(&self) -> SimulationAddress
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 SimulationAddress
impl Debug for SimulationAddress
Source§impl Default for SimulationAddress
impl Default for SimulationAddress
Source§impl<'de> Deserialize<'de> for SimulationAddress
impl<'de> Deserialize<'de> for SimulationAddress
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 SimulationAddress
impl PartialEq for SimulationAddress
Source§impl Serialize for SimulationAddress
impl Serialize for SimulationAddress
impl Copy for SimulationAddress
impl StructuralPartialEq for SimulationAddress
Auto Trait Implementations§
impl Freeze for SimulationAddress
impl RefUnwindSafe for SimulationAddress
impl Send for SimulationAddress
impl Sync for SimulationAddress
impl Unpin for SimulationAddress
impl UnwindSafe for SimulationAddress
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