pub struct SynthesisEvent {
pub name: String,
pub materials: Vec<SynthesisEventMaterial>,
}
Fields§
§name: String
§materials: Vec<SynthesisEventMaterial>
Trait Implementations§
Source§impl Clone for SynthesisEvent
impl Clone for SynthesisEvent
Source§fn clone(&self) -> SynthesisEvent
fn clone(&self) -> SynthesisEvent
Returns a copy 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 SynthesisEvent
impl Debug for SynthesisEvent
Source§impl<'de> Deserialize<'de> for SynthesisEvent
impl<'de> Deserialize<'de> for SynthesisEvent
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 SynthesisEvent
impl PartialEq for SynthesisEvent
Source§impl Serialize for SynthesisEvent
impl Serialize for SynthesisEvent
impl StructuralPartialEq for SynthesisEvent
Auto Trait Implementations§
impl Freeze for SynthesisEvent
impl RefUnwindSafe for SynthesisEvent
impl Send for SynthesisEvent
impl Sync for SynthesisEvent
impl Unpin for SynthesisEvent
impl UnwindSafe for SynthesisEvent
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