Struct RenderMapEvent
#[non_exhaustive]pub struct RenderMapEvent {
pub mode: RenderMode,
}Expand description
Render-map event payload.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.mode: RenderModeTrait Implementations§
§impl Clone for RenderMapEvent
impl Clone for RenderMapEvent
§fn clone(&self) -> RenderMapEvent
fn clone(&self) -> RenderMapEvent
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 more§impl Debug for RenderMapEvent
impl Debug for RenderMapEvent
§impl Hash for RenderMapEvent
impl Hash for RenderMapEvent
§impl PartialEq for RenderMapEvent
impl PartialEq for RenderMapEvent
impl Eq for RenderMapEvent
impl StructuralPartialEq for RenderMapEvent
Auto Trait Implementations§
impl Freeze for RenderMapEvent
impl RefUnwindSafe for RenderMapEvent
impl Send for RenderMapEvent
impl Sync for RenderMapEvent
impl Unpin for RenderMapEvent
impl UnsafeUnpin for RenderMapEvent
impl UnwindSafe for RenderMapEvent
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