pub struct UiView { /* private fields */ }Available on crate feature
ui only.Expand description
▦ Frame-local visual record for a UI identity.
📦 size_of::<UiView>() == 28 bytes / 224 bits #️⃣ #[cfg(target_pointer_width = “32”)]
⚗️Option<T> 🟰 T
📦 size_of::<UiView>() == 32 bytes / 256 bits #️⃣ #[cfg(target_pointer_width = “64”)]
⚗️Option<T> 🟰 T
Connects a resolved UI identity with the visual region and ordering layer used for presentation.
Implementations§
Source§impl UiView
impl UiView
Sourcepub const fn new(id: UiId, rect: UiRect) -> Self
pub const fn new(id: UiId, rect: UiRect) -> Self
Constructs a visual record on the base layer with no flags.
Sourcepub const fn from_parts(
id: UiId,
rect: UiRect,
layer: UiLayer,
flags: UiViewFlags,
) -> Self
pub const fn from_parts( id: UiId, rect: UiRect, layer: UiLayer, flags: UiViewFlags, ) -> Self
Constructs a visual record from all parts.
Sourcepub const fn flags(&self) -> UiViewFlags
pub const fn flags(&self) -> UiViewFlags
Returns the visual flags.
Returns whether the view is visually hidden.
Sourcepub const fn is_visible(&self) -> bool
pub const fn is_visible(&self) -> bool
Returns whether the view is visually present.
Sourcepub const fn with_layer(self, layer: UiLayer) -> Self
pub const fn with_layer(self, layer: UiLayer) -> Self
Returns this view with another layer.
Sourcepub const fn replace_flags(self, flags: UiViewFlags) -> Self
pub const fn replace_flags(self, flags: UiViewFlags) -> Self
Returns this view with another flag set.
Sourcepub const fn with_flags(self, flags: UiViewFlags) -> Self
pub const fn with_flags(self, flags: UiViewFlags) -> Self
Returns this view with flags included.
Sourcepub const fn without_flags(self, flags: UiViewFlags) -> Self
pub const fn without_flags(self, flags: UiViewFlags) -> Self
Returns this view with flags removed.
Trait Implementations§
impl Copy for UiView
impl Eq for UiView
impl StructuralPartialEq for UiView
Auto Trait Implementations§
impl Freeze for UiView
impl RefUnwindSafe for UiView
impl Send for UiView
impl Sync for UiView
impl Unpin for UiView
impl UnsafeUnpin for UiView
impl UnwindSafe for UiView
Blanket Implementations§
Source§impl<T> AnyExt for T
impl<T> AnyExt for T
Source§fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
Returns a deterministic hash of the
TypeId of Self using a custom hasher.Source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
Source§fn as_any_box(self: Box<Self>) -> Box<dyn Any>where
Self: Sized,
fn as_any_box(self: Box<Self>) -> Box<dyn Any>where
Self: Sized,
Available on crate feature
alloc only.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
Source§impl<T> ByteSized for T
impl<T> ByteSized for T
Source§const BYTE_ALIGN: usize = _
const BYTE_ALIGN: usize = _
The alignment of this type in bytes.
Source§fn byte_align(&self) -> usize
fn byte_align(&self) -> usize
Returns the alignment of this type in bytes.
Source§fn ptr_size_ratio(&self) -> [usize; 2]
fn ptr_size_ratio(&self) -> [usize; 2]
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> MemExt for Twhere
T: ?Sized,
impl<T> MemExt for Twhere
T: ?Sized,
Source§const NEEDS_DROP: bool = _
const NEEDS_DROP: bool = _
Know whether dropping values of this type matters, in compile-time.
Source§fn mem_align_of<T>() -> usize
fn mem_align_of<T>() -> usize
Returns the minimum alignment of the type in bytes. Read more
Source§fn mem_align_of_val(&self) -> usize
fn mem_align_of_val(&self) -> usize
Returns the alignment of the pointed-to value in bytes. Read more
Source§fn mem_size_of<T>() -> usize
fn mem_size_of<T>() -> usize
Returns the size of a type in bytes. Read more
Source§fn mem_size_of_val(&self) -> usize
fn mem_size_of_val(&self) -> usize
Returns the size of the pointed-to value in bytes. Read more
Source§fn mem_needs_drop(&self) -> bool
fn mem_needs_drop(&self) -> bool
Returns
true if dropping values of this type matters. Read moreSource§fn mem_forget(self)where
Self: Sized,
fn mem_forget(self)where
Self: Sized,
Forgets about
self without running its destructor. Read moreSource§fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
Source§unsafe fn mem_zeroed<T>() -> T
unsafe fn mem_zeroed<T>() -> T
Available on crate feature
unsafe_layout only.Returns the value of type
T represented by the all-zero byte-pattern. Read moreSource§unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
Available on crate feature
unsafe_layout only.Returns the value of type
T represented by the all-zero byte-pattern. Read moreSource§fn mem_as_bytes(&self) -> &[u8] ⓘ
fn mem_as_bytes(&self) -> &[u8] ⓘ
Available on crate feature
unsafe_slice only.