pub struct WorldApplyAction {
pub target: String,
pub action: String,
pub at_ms: u64,
pub loop: bool,
pub weight: String,
}Fields§
§target: String§action: String§at_ms: u64§loop: bool§weight: StringTrait Implementations§
Source§impl Clone for WorldApplyAction
impl Clone for WorldApplyAction
Source§fn clone(&self) -> WorldApplyAction
fn clone(&self) -> WorldApplyAction
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 Debug for WorldApplyAction
impl Debug for WorldApplyAction
Source§impl<'de> Deserialize<'de> for WorldApplyAction
impl<'de> Deserialize<'de> for WorldApplyAction
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 WorldApplyAction
impl PartialEq for WorldApplyAction
Source§fn eq(&self, other: &WorldApplyAction) -> bool
fn eq(&self, other: &WorldApplyAction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WorldApplyAction
impl Serialize for WorldApplyAction
impl StructuralPartialEq for WorldApplyAction
Auto Trait Implementations§
impl Freeze for WorldApplyAction
impl RefUnwindSafe for WorldApplyAction
impl Send for WorldApplyAction
impl Sync for WorldApplyAction
impl Unpin for WorldApplyAction
impl UnsafeUnpin for WorldApplyAction
impl UnwindSafe for WorldApplyAction
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