pub struct Debugger { /* private fields */ }
Trait Implementations§
Source§impl Debugger for Debugger
impl Debugger for Debugger
fn render_color_image_to_canvas( &self, image: &ColorImage, ) -> Result<(), &'static str>
fn render_bounding_rect_to_canvas_with_color( &self, rect: &BoundingRect, color: Color, )
fn log(&self, msg: &str)
fn render_binary_image_to_canvas( &self, image: &BinaryImage, ) -> Result<(), &'static str>
fn render_point_i32_to_canvas(&self, point: Point2<i32>)
fn render_point_i32_to_canvas_with_size_color( &self, point: Point2<i32>, size: usize, color: Color, )
fn render_bounding_rect_to_canvas(&self, rect: &BoundingRect)
Auto Trait Implementations§
impl Freeze for Debugger
impl RefUnwindSafe for Debugger
impl !Send for Debugger
impl !Sync for Debugger
impl Unpin for Debugger
impl UnwindSafe for Debugger
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more