pub struct Image { /* private fields */ }
Expand description
Builder for an image widget
Implementations§
Source§impl Image
impl Image
Sourcepub fn new(texture_id: TextureId, size: impl Into<Vector2<f32>>) -> Image
pub fn new(texture_id: TextureId, size: impl Into<Vector2<f32>>) -> Image
Creates a new image builder with the given texture and size
Sourcepub fn size(self, size: impl Into<Vector2<f32>>) -> Image
👎Deprecated: just set the size in the new
constructor.
pub fn size(self, size: impl Into<Vector2<f32>>) -> Image
new
constructor.Sets the image size
Sourcepub fn tint_col(self, tint_col: impl Into<Vector4<f32>>) -> Image
pub fn tint_col(self, tint_col: impl Into<Vector4<f32>>) -> Image
Sets the tint color (default: no tint color)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Image
impl RefUnwindSafe for Image
impl Send for Image
impl Sync for Image
impl Unpin for Image
impl UnwindSafe for Image
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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