pub struct SystemState3TM { /* private fields */ }Trait Implementations§
Source§impl Clone for SystemState3TM
impl Clone for SystemState3TM
Source§fn clone(&self) -> SystemState3TM
fn clone(&self) -> SystemState3TM
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 SystemState3TM
impl Debug for SystemState3TM
Source§impl Default for SystemState3TM
impl Default for SystemState3TM
Source§fn default() -> SystemState3TM
fn default() -> SystemState3TM
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SystemState3TM
impl<'de> Deserialize<'de> for SystemState3TM
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 SystemState3TM
impl PartialEq for SystemState3TM
Source§impl PartialOrd for SystemState3TM
impl PartialOrd for SystemState3TM
Source§impl Serialize for SystemState3TM
impl Serialize for SystemState3TM
impl Copy for SystemState3TM
impl StructuralPartialEq for SystemState3TM
Auto Trait Implementations§
impl Freeze for SystemState3TM
impl RefUnwindSafe for SystemState3TM
impl Send for SystemState3TM
impl Sync for SystemState3TM
impl Unpin for SystemState3TM
impl UnwindSafe for SystemState3TM
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> SerdeAPI for Twhere
T: Serialize + for<'a> Deserialize<'a>,
impl<T> SerdeAPI for Twhere
T: Serialize + for<'a> Deserialize<'a>,
Source§fn to_file(&self, filename: &str) -> Result<(), Error>
fn to_file(&self, filename: &str) -> Result<(), Error>
Save current data structure to file. Method adaptively calls serialization methods
dependent on the suffix of the file given as str. Read more
Source§fn from_file(filename: &str) -> Result<Self, Error>where
Self: Sized + for<'de> Deserialize<'de>,
fn from_file(filename: &str) -> Result<Self, Error>where
Self: Sized + for<'de> Deserialize<'de>,
Read from file and return instantiated struct. Method adaptively calls deserialization
methods dependent on the suffix of the file name given as str.
Function returns a dynamic Error Result if it fails. Read more