Struct egui::RepaintCause
source · pub struct RepaintCause {
pub file: String,
pub line: u32,
}
Expand description
What called Context::request_repaint
?
Fields§
§file: String
What file had the call that requested the repaint?
line: u32
What line number of the the call that requested the repaint?
Implementations§
source§impl RepaintCause
impl RepaintCause
Trait Implementations§
source§impl Clone for RepaintCause
impl Clone for RepaintCause
source§fn clone(&self) -> RepaintCause
fn clone(&self) -> RepaintCause
Returns a copy 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 RepaintCause
impl Debug for RepaintCause
Auto Trait Implementations§
impl RefUnwindSafe for RepaintCause
impl Send for RepaintCause
impl Sync for RepaintCause
impl Unpin for RepaintCause
impl UnwindSafe for RepaintCause
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