usecrate::canvas::Frame;/// A type that can be drawn on a [`Frame`].
////// [`Frame`]: struct.Frame.html
pubtraitDrawable{/// Draws the [`Drawable`] on the given [`Frame`].
////// [`Drawable`]: trait.Drawable.html
/// [`Frame`]: struct.Frame.html
fndraw(&self, frame:&mut Frame);}