pub struct PhraseExtendEvent {
pub name: String,
pub definition: TypeDefinitionCommon,
pub event: EventDefinitionCommon,
}
Expand description
Defines an extension to an existing Event, e.g.,
Extend Event fire
Creates ash().
Fields§
§name: String
The name of the thing to extend.
definition: TypeDefinitionCommon
Defines the common definition fields that can be extended.
event: EventDefinitionCommon
Defines the common event fields that can be extended.
Trait Implementations§
Source§impl Clone for PhraseExtendEvent
impl Clone for PhraseExtendEvent
Source§fn clone(&self) -> PhraseExtendEvent
fn clone(&self) -> PhraseExtendEvent
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 PhraseExtendEvent
impl Debug for PhraseExtendEvent
Source§impl<'de> Deserialize<'de> for PhraseExtendEvent
impl<'de> Deserialize<'de> for PhraseExtendEvent
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 PhraseExtendEvent
impl RefUnwindSafe for PhraseExtendEvent
impl Send for PhraseExtendEvent
impl Sync for PhraseExtendEvent
impl Unpin for PhraseExtendEvent
impl UnwindSafe for PhraseExtendEvent
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