usecrate::assets::ImageSource;usecrate::styles::ImageViewStyle;/// Renders an image source to the screen.
#[derive(Default)]pubstructImage{/// Controls the appearance and layout of an Image.
pubstyle: ImageViewStyle,
/// The source of the image that is rendered to the screen.
pubsource: ImageSource,
}