pub struct SetPropertyCommand {
pub entity_id: EntityId,
pub property: String,
pub old_value: String,
pub new_value: String,
}Expand description
Set a named string property on an entity.
Fields§
§entity_id: EntityId§property: String§old_value: String§new_value: StringTrait Implementations§
Source§impl Debug for SetPropertyCommand
impl Debug for SetPropertyCommand
Source§impl EditorCommand for SetPropertyCommand
impl EditorCommand for SetPropertyCommand
Auto Trait Implementations§
impl Freeze for SetPropertyCommand
impl RefUnwindSafe for SetPropertyCommand
impl Send for SetPropertyCommand
impl Sync for SetPropertyCommand
impl Unpin for SetPropertyCommand
impl UnsafeUnpin for SetPropertyCommand
impl UnwindSafe for SetPropertyCommand
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