#[repr(C)]pub struct LayoutDebugMessage {
pub message_type: LayoutDebugMessageType,
pub message: AzString,
pub location: AzString,
}Fields§
§message_type: LayoutDebugMessageType§message: AzString§location: AzStringImplementations§
Source§impl LayoutDebugMessage
impl LayoutDebugMessage
Sourcepub fn new(
message_type: LayoutDebugMessageType,
message: impl Into<String>,
) -> Self
pub fn new( message_type: LayoutDebugMessageType, message: impl Into<String>, ) -> Self
Create a new debug message with automatic caller location tracking
Sourcepub fn css_getter(message: impl Into<String>) -> Self
pub fn css_getter(message: impl Into<String>) -> Self
Helper for CSS Getter debug messages
Sourcepub fn bfc_layout(message: impl Into<String>) -> Self
pub fn bfc_layout(message: impl Into<String>) -> Self
Helper for BFC Layout debug messages
Sourcepub fn ifc_layout(message: impl Into<String>) -> Self
pub fn ifc_layout(message: impl Into<String>) -> Self
Helper for IFC Layout debug messages
Sourcepub fn table_layout(message: impl Into<String>) -> Self
pub fn table_layout(message: impl Into<String>) -> Self
Helper for Table Layout debug messages
Sourcepub fn display_type(message: impl Into<String>) -> Self
pub fn display_type(message: impl Into<String>) -> Self
Helper for Display Type debug messages
Trait Implementations§
Source§impl Clone for LayoutDebugMessage
impl Clone for LayoutDebugMessage
Source§fn clone(&self) -> LayoutDebugMessage
fn clone(&self) -> LayoutDebugMessage
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 moreSource§impl Debug for LayoutDebugMessage
impl Debug for LayoutDebugMessage
Source§impl Default for LayoutDebugMessage
impl Default for LayoutDebugMessage
Source§fn default() -> LayoutDebugMessage
fn default() -> LayoutDebugMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for LayoutDebugMessage
impl PartialEq for LayoutDebugMessage
Source§impl PartialOrd for LayoutDebugMessage
impl PartialOrd for LayoutDebugMessage
impl StructuralPartialEq for LayoutDebugMessage
Auto Trait Implementations§
impl Freeze for LayoutDebugMessage
impl RefUnwindSafe for LayoutDebugMessage
impl Send for LayoutDebugMessage
impl Sync for LayoutDebugMessage
impl Unpin for LayoutDebugMessage
impl UnwindSafe for LayoutDebugMessage
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