pub struct ComputationInterface {
pub interface_type: ComputationInterfaceType,
pub protocol: String,
pub data_format: String,
pub processing_capability: f64,
pub memory_capacity: usize,
pub network_connectivity: bool,
}Expand description
Interfaces to computational systems
Fields§
§interface_type: ComputationInterfaceType§protocol: String§data_format: String§processing_capability: f64§memory_capacity: usize§network_connectivity: boolTrait Implementations§
Source§impl Clone for ComputationInterface
impl Clone for ComputationInterface
Source§fn clone(&self) -> ComputationInterface
fn clone(&self) -> ComputationInterface
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ComputationInterface
impl Debug for ComputationInterface
Source§impl<'de> Deserialize<'de> for ComputationInterface
impl<'de> Deserialize<'de> for ComputationInterface
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
Auto Trait Implementations§
impl Freeze for ComputationInterface
impl RefUnwindSafe for ComputationInterface
impl Send for ComputationInterface
impl Sync for ComputationInterface
impl Unpin for ComputationInterface
impl UnsafeUnpin for ComputationInterface
impl UnwindSafe for ComputationInterface
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