pub struct SystemEntity {
pub name: String,
pub value: String,
}Expand description
A struct to hold additional data for SystemEntitys.
Fields§
§name: StringThe name of the SystemEntity.
value: StringA freefrom string.
Trait Implementations§
Source§impl Clone for SystemEntity
impl Clone for SystemEntity
Source§fn clone(&self) -> SystemEntity
fn clone(&self) -> SystemEntity
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 SystemEntity
impl Debug for SystemEntity
Source§impl<'de> Deserialize<'de> for SystemEntity
impl<'de> Deserialize<'de> for SystemEntity
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 SystemEntity
impl PartialEq for SystemEntity
Source§impl Serialize for SystemEntity
impl Serialize for SystemEntity
impl StructuralPartialEq for SystemEntity
Auto Trait Implementations§
impl Freeze for SystemEntity
impl RefUnwindSafe for SystemEntity
impl Send for SystemEntity
impl Sync for SystemEntity
impl Unpin for SystemEntity
impl UnwindSafe for SystemEntity
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