pub struct EmotionBlock {
pub states: Vec<EmotionState>,
}Expand description
Emotion block.
Fields§
§states: Vec<EmotionState>The emotion states.
Trait Implementations§
Source§impl Clone for EmotionBlock
impl Clone for EmotionBlock
Source§fn clone(&self) -> EmotionBlock
fn clone(&self) -> EmotionBlock
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 EmotionBlock
impl Debug for EmotionBlock
Source§impl<'de> Deserialize<'de> for EmotionBlock
impl<'de> Deserialize<'de> for EmotionBlock
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 EmotionBlock
impl PartialEq for EmotionBlock
Source§impl Serialize for EmotionBlock
impl Serialize for EmotionBlock
impl StructuralPartialEq for EmotionBlock
Auto Trait Implementations§
impl Freeze for EmotionBlock
impl RefUnwindSafe for EmotionBlock
impl Send for EmotionBlock
impl Sync for EmotionBlock
impl Unpin for EmotionBlock
impl UnsafeUnpin for EmotionBlock
impl UnwindSafe for EmotionBlock
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