pub struct LinkedCelOptions {
pub x: i16,
pub y: i16,
pub opacity: u8,
pub z_index: i16,
pub user_data: Option<UserData>,
pub extra: Option<CelExtra>,
}Expand description
Options for creating a linked cel with non-default opacity, position, z-index, or metadata.
Fields§
§x: i16§y: i16§opacity: u8§z_index: i16§user_data: Option<UserData>§extra: Option<CelExtra>Trait Implementations§
Auto Trait Implementations§
impl Freeze for LinkedCelOptions
impl RefUnwindSafe for LinkedCelOptions
impl Send for LinkedCelOptions
impl Sync for LinkedCelOptions
impl Unpin for LinkedCelOptions
impl UnsafeUnpin for LinkedCelOptions
impl UnwindSafe for LinkedCelOptions
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