pub struct EntityOutput<'src> {
pub output_name: &'src str,
pub target: &'src str,
pub input: &'src str,
pub parameter: &'src str,
pub delay: f32,
pub times_to_fire: i32,
}Expand description
Represents an output connection between entities
Fields§
§output_name: &'src str§target: &'src str§input: &'src str§parameter: &'src str§delay: f32§times_to_fire: i32Implementations§
Source§impl<'src> EntityOutput<'src>
impl<'src> EntityOutput<'src>
Trait Implementations§
Source§impl<'src> Clone for EntityOutput<'src>
impl<'src> Clone for EntityOutput<'src>
Source§fn clone(&self) -> EntityOutput<'src>
fn clone(&self) -> EntityOutput<'src>
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<'src> Debug for EntityOutput<'src>
impl<'src> Debug for EntityOutput<'src>
Source§impl<'src> Default for EntityOutput<'src>
impl<'src> Default for EntityOutput<'src>
Source§fn default() -> EntityOutput<'src>
fn default() -> EntityOutput<'src>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'src> Freeze for EntityOutput<'src>
impl<'src> RefUnwindSafe for EntityOutput<'src>
impl<'src> Send for EntityOutput<'src>
impl<'src> Sync for EntityOutput<'src>
impl<'src> Unpin for EntityOutput<'src>
impl<'src> UnsafeUnpin for EntityOutput<'src>
impl<'src> UnwindSafe for EntityOutput<'src>
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