pub struct DrawInterfaceData {
pub base: ObjInterfaceData,
pub drawables: Vec<(u32, Option<Uoid>)>,
pub regions: Vec<Option<Uoid>>,
}Expand description
Parsed plDrawInterface data.
Fields§
§base: ObjInterfaceData§drawables: Vec<(u32, Option<Uoid>)>(drawable_index, drawable_key) pairs.
regions: Vec<Option<Uoid>>Visibility region keys.
Implementations§
Trait Implementations§
Source§impl Clone for DrawInterfaceData
impl Clone for DrawInterfaceData
Source§fn clone(&self) -> DrawInterfaceData
fn clone(&self) -> DrawInterfaceData
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DrawInterfaceData
impl RefUnwindSafe for DrawInterfaceData
impl Send for DrawInterfaceData
impl Sync for DrawInterfaceData
impl Unpin for DrawInterfaceData
impl UnsafeUnpin for DrawInterfaceData
impl UnwindSafe for DrawInterfaceData
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