pub struct Cel {
pub kind: CelKind,
pub opacity: u8,
pub z_index: i16,
pub user_data: Option<UserData>,
pub extra: Option<CelExtra>,
}Expand description
A cel (the content of one layer in one frame).
Fields§
§kind: CelKind§opacity: u8§z_index: i16§user_data: Option<UserData>§extra: Option<CelExtra>Trait Implementations§
impl StructuralPartialEq for Cel
Auto Trait Implementations§
impl Freeze for Cel
impl RefUnwindSafe for Cel
impl Send for Cel
impl Sync for Cel
impl Unpin for Cel
impl UnsafeUnpin for Cel
impl UnwindSafe for Cel
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